<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Multi value parameter on Power BI Paginated / SSRS connected to databricks using ODBC in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/32187#M23456</link>
    <description>&lt;P&gt;@Reen Zidaj​&amp;nbsp;have you pulled this off yet?&lt;/P&gt;&lt;P&gt;I will soon be in the same boat.&lt;/P&gt;</description>
    <pubDate>Thu, 12 Jan 2023 15:59:52 GMT</pubDate>
    <dc:creator>-werners-</dc:creator>
    <dc:date>2023-01-12T15:59:52Z</dc:date>
    <item>
      <title>Multi value parameter on Power BI Paginated / SSRS connected to databricks using ODBC</title>
      <link>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/32186#M23455</link>
      <description>&lt;P&gt;Hi All, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm wondering if anyone has had any luck setting up multi valued parameters on SSRS using ODBC connection to Databricks? I'm getting "Cannot add multi value query parameter" error everytime I change my parameter to multi value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the query section I've tried:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT * 
&amp;nbsp;
FROM tmp_result
&amp;nbsp;
WHERE (profileArea IN (?))&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I've also tried &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT * 
&amp;nbsp;
FROM tmp_result
&amp;nbsp;
WHERE (profileArea IN ('" &amp;amp; Join(Parameters!ProfileArea.Value, "', '") &amp;amp; "')) &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;As well as&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT * 
&amp;nbsp;
FROM tmp_result
&amp;nbsp;
WHERE (profileArea IN ("&amp;amp; Join(Parameters!ProfileArea.Value,",") &amp;amp;"))&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and entering the below into the parameter expression.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;=Split(Join(Parameters!ProfileArea.Value, " , "))&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; I've also tried&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;=Join(Parameters!ProfileArea.Value, " , ")&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Connection &lt;B&gt;must&lt;/B&gt; be with ODBC, I cannot import connection into Power BI and use a power BI dataset instead. &lt;/P&gt;&lt;P&gt;**ODBC connection doesn't support @parameter syntax in the query section, I've tried.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Sep 2022 00:41:51 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/32186#M23455</guid>
      <dc:creator>DataGirl</dc:creator>
      <dc:date>2022-09-09T00:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Multi value parameter on Power BI Paginated / SSRS connected to databricks using ODBC</title>
      <link>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/32187#M23456</link>
      <description>&lt;P&gt;@Reen Zidaj​&amp;nbsp;have you pulled this off yet?&lt;/P&gt;&lt;P&gt;I will soon be in the same boat.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2023 15:59:52 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/32187#M23456</guid>
      <dc:creator>-werners-</dc:creator>
      <dc:date>2023-01-12T15:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Multi value parameter on Power BI Paginated / SSRS connected to databricks using ODBC</title>
      <link>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/32188#M23457</link>
      <description>&lt;P&gt;Ok, so I managed to pull it off.&lt;/P&gt;&lt;P&gt;Basically you were on the right track,  but there is some extra magic to it.&lt;/P&gt;&lt;P&gt;So instead of entering your query in the Query field (in Dataset Properties), you use the formula builder (click on the fx button next to the query field).&lt;/P&gt;&lt;P&gt;In the formula builder you enter your query as you already mentioned:&lt;/P&gt;&lt;P&gt;= "SELECT * &amp;nbsp;&lt;/P&gt;&lt;P&gt;FROM tmp_result&amp;nbsp;&lt;/P&gt;&lt;P&gt;WHERE (profileArea IN ('" &amp;amp; Join(Parameters!ProfileArea.Value, "', '") &amp;amp; "'))"&lt;/P&gt;&lt;P&gt;The trick is to &lt;B&gt;put the whole query into double quotes&lt;/B&gt; and using the &lt;B&gt;formula builder&lt;/B&gt;.&lt;/P&gt;&lt;P&gt;When you exit the formula builder, the query field will show "&amp;lt;&amp;lt;Expr&amp;gt;&amp;gt;", so you can't see the actual query.&lt;/P&gt;&lt;P&gt;But this approach works for me.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 12:50:22 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/32188#M23457</guid>
      <dc:creator>-werners-</dc:creator>
      <dc:date>2023-02-09T12:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: Multi value parameter on Power BI Paginated / SSRS connected to databricks using ODBC</title>
      <link>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/32189#M23458</link>
      <description>&lt;P&gt;Hi there! I found this solution and it has helped a lot. I have a question -- how do you populate the "Fields" section of the dataset properties if you're using the formula builder? If I type the query directly into the query text field, it will auto-input the fields. Is there a good workaround?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2023 20:31:28 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/32189#M23458</guid>
      <dc:creator>AEW</dc:creator>
      <dc:date>2023-04-13T20:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: Multi value parameter on Power BI Paginated / SSRS connected to databricks using ODBC</title>
      <link>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/32190#M23459</link>
      <description>&lt;P&gt;The formula builder itself also has the possibility to define fields (with an expression).  I think that is the way to go, but I am no SSRS expert by far.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2023 07:01:31 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/32190#M23459</guid>
      <dc:creator>-werners-</dc:creator>
      <dc:date>2023-04-14T07:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: Multi value parameter on Power BI Paginated / SSRS connected to databricks using ODBC</title>
      <link>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/54929#M30199</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am facing similar kind of issue.&amp;nbsp; I am working on Power BI paginated report and databricks is my source for the report. I was trying to pass the parameter by passing the query in expression builder as mentioned above. However, I have end up with below error.&lt;/P&gt;&lt;P&gt;ERROR [42601] [Simba][Hardy] (80) Syntax or semantic analysis error thrown in server while executing query. Error message from server: org.apache.hive.service.cli.HiveSQLException: Error running query: [PARSE_SYNTAX_ERROR] org.apache.spark.sql.catalyst.parser.ParseException:&lt;BR /&gt;[PARSE_SYNTAX_ERROR] Syntax error at or near 'and'.(line 1, pos 84)&lt;/P&gt;&lt;P&gt;My Query:&lt;/P&gt;&lt;P&gt;== SQL ==&lt;BR /&gt;="select * from table where Category='ABC' and (FiscalYear=Parameters!Year.Value)and (Month=Parameters!Month.Value) and (Program=Parameters!Program.Value)"&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Fri, 08 Dec 2023 14:56:33 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/54929#M30199</guid>
      <dc:creator>TechMG</dc:creator>
      <dc:date>2023-12-08T14:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: Multi value parameter on Power BI Paginated / SSRS connected to databricks using ODBC</title>
      <link>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/114099#M44719</link>
      <description>&lt;P&gt;Hi I am working on having SSRS reports access Databricks and facing similar challenges. I see you tried this back in 2022. Can you please advice the approach to handle the multi value parameters? Thanks Sam&lt;/P&gt;</description>
      <pubDate>Mon, 31 Mar 2025 16:14:50 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/114099#M44719</guid>
      <dc:creator>ssrsnat</dc:creator>
      <dc:date>2025-03-31T16:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: Multi value parameter on Power BI Paginated / SSRS connected to databricks using ODBC</title>
      <link>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/138089#M50858</link>
      <description>&lt;P&gt;Hi I am also trying to set multi value parameters using the dynamic sql expression. However, the report gives error that multi value parameters are not supported by the data extension. Any help on this would be highly appreciated. Thanks , Drishti&lt;/P&gt;</description>
      <pubDate>Fri, 07 Nov 2025 09:58:44 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/multi-value-parameter-on-power-bi-paginated-ssrs-connected-to/m-p/138089#M50858</guid>
      <dc:creator>kashti123</dc:creator>
      <dc:date>2025-11-07T09:58:44Z</dc:date>
    </item>
  </channel>
</rss>

