<?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: Passing parameters from power bi report server to SSRS RDL does not work in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2515568#M24142</link>
    <description>&lt;P&gt;WOW Amazing!! Thank you so much it works great now with one value passed in the url,&lt;BR /&gt;If I need multiple values, is there a way in DAX syntax for some kind of loop? If so do you have an example?&lt;BR /&gt;I need to pass multiple values for the parameter "Emloyee" like this:&lt;BR /&gt;&lt;A href="https://ReportServer/Reports/ReportName?Employee=1&amp;amp;Employee=2" target="_blank" rel="noopener"&gt;https://ReportServer/Reports/ReportName?Employee=1&amp;amp;Employee=2&lt;/A&gt;&lt;BR /&gt;This is my code that works for one value:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;EM&gt;PaginatedaReportURL = &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _baseurl = "&lt;A href="https://ReportServer/reports/ReportName" target="_blank" rel="noopener"&gt;https://ReportServer/reports/ReportName&lt;/A&gt;"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _selectemployee = SELECTEDVALUE(Query1[Employee])&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _reportparameterEmployee = "?Employee="&amp;amp;_selectemployee&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _result = _baseurl&amp;amp;_reportparameterEmployee&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;return &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;_result&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;Also I want the rdl to open up automaticly in excel so I've added "&amp;amp;rdl:format=excel" to the URL - but this also doesn't work (also tried "&amp;amp;rs:Format=excel" or "&amp;amp;Format=excel"). Maybe syntax also should be different for the server version?&lt;/DIV&gt;&lt;DIV&gt;Thanks a lot!&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Sun, 15 May 2022 11:17:50 GMT</pubDate>
    <dc:creator>pbiuser1234</dc:creator>
    <dc:date>2022-05-15T11:17:50Z</dc:date>
    <item>
      <title>Passing parameters from power bi report server to SSRS RDL does not work</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2509906#M24118</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I'm using ?rp:parameter=value in a URL of SSRS RDL uploaded to the power bi server,&lt;BR /&gt;But it doesn't work - the report is not filtered by the passed parameter.&lt;/P&gt;&lt;P&gt;Is it only working with power bi service? not on server,&lt;/P&gt;&lt;P&gt;or maybe I should use Report builder instead of SSRS to build the RDL?&lt;BR /&gt;Thanks in advandced&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 08:28:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2509906#M24118</guid>
      <dc:creator>pbiuser1234</dc:creator>
      <dc:date>2022-05-12T08:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters from power bi report server to SSRS RDL does not work</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2511672#M24125</link>
      <description>&lt;P&gt;It does not matter what tool you use to author the rdl files. The issue is that Report Server uses the Reporting Services syntax for passing parameters via the URL which is slightly different to the Power BI service syntax. If you remove the rp: prefix your urls should work (see&amp;nbsp;&lt;A href="https://docs.microsoft.com/en-us/sql/reporting-services/pass-a-report-parameter-within-a-url?view=sql-server-ver15" target="_blank"&gt;https://docs.microsoft.com/en-us/sql/reporting-services/pass-a-report-parameter-within-a-url?view=sql-server-ver15&lt;/A&gt;&amp;nbsp;)&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 22:48:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2511672#M24125</guid>
      <dc:creator>d_gosbell</dc:creator>
      <dc:date>2022-05-12T22:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters from power bi report server to SSRS RDL does not work</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2515568#M24142</link>
      <description>&lt;P&gt;WOW Amazing!! Thank you so much it works great now with one value passed in the url,&lt;BR /&gt;If I need multiple values, is there a way in DAX syntax for some kind of loop? If so do you have an example?&lt;BR /&gt;I need to pass multiple values for the parameter "Emloyee" like this:&lt;BR /&gt;&lt;A href="https://ReportServer/Reports/ReportName?Employee=1&amp;amp;Employee=2" target="_blank" rel="noopener"&gt;https://ReportServer/Reports/ReportName?Employee=1&amp;amp;Employee=2&lt;/A&gt;&lt;BR /&gt;This is my code that works for one value:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;EM&gt;PaginatedaReportURL = &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _baseurl = "&lt;A href="https://ReportServer/reports/ReportName" target="_blank" rel="noopener"&gt;https://ReportServer/reports/ReportName&lt;/A&gt;"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _selectemployee = SELECTEDVALUE(Query1[Employee])&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _reportparameterEmployee = "?Employee="&amp;amp;_selectemployee&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _result = _baseurl&amp;amp;_reportparameterEmployee&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;return &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;_result&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;Also I want the rdl to open up automaticly in excel so I've added "&amp;amp;rdl:format=excel" to the URL - but this also doesn't work (also tried "&amp;amp;rs:Format=excel" or "&amp;amp;Format=excel"). Maybe syntax also should be different for the server version?&lt;/DIV&gt;&lt;DIV&gt;Thanks a lot!&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 15 May 2022 11:17:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2515568#M24142</guid>
      <dc:creator>pbiuser1234</dc:creator>
      <dc:date>2022-05-15T11:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters from power bi report server to SSRS RDL does not work</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2515966#M24143</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="320029" data-lia-user-login="pbiuser1234" class="lia-mention lia-mention-user"&gt;pbiuser1234&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;If I need multiple values, is there a way in DAX syntax for some kind of loop?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes, you could use the CONCATENATEX function&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;PaginatedaReportURL =&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _baseurl = "&lt;A href="https://reportserver/reports/ReportName" target="_blank" rel="noopener nofollow noreferrer"&gt;https://ReportServer/reports/ReportName&lt;/A&gt;"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _selectemployee = CONCATENATEX(VALUES(Query1[Employee]), "&amp;amp;Employee=")&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _reportparameterEmployee = "?Employee="&amp;amp;_selectemployee&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _result = _baseurl&amp;amp;_reportparameterEmployee&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;return&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;_result&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="320029" data-lia-user-login="pbiuser1234" class="lia-mention lia-mention-user"&gt;pbiuser1234&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;DIV&gt;
&lt;DIV&gt;Also I want the rdl to open up automaticly in excel so I've added "&amp;amp;rdl:format=excel" to the URL - but this also doesn't work (also tried "&amp;amp;rs:Format=excel" or "&amp;amp;Format=excel"). Maybe syntax also should be different for the server version?&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The "rs:Format=EXCEL" should get you an xls file, if you use "rs:Format=EXCELOPENXML" it will return an xlsx file. (see&amp;nbsp;&lt;A href="https://docs.microsoft.com/en-us/sql/reporting-services/url-access-parameter-reference?view=sql-server-ver15" target="_blank"&gt;https://docs.microsoft.com/en-us/sql/reporting-services/url-access-parameter-reference?view=sql-server-ver15&lt;/A&gt;&amp;nbsp;) - I don't think the upper/lower case matters&lt;/P&gt;</description>
      <pubDate>Sun, 15 May 2022 23:13:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2515966#M24143</guid>
      <dc:creator>d_gosbell</dc:creator>
      <dc:date>2022-05-15T23:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters from power bi report server to SSRS RDL does not work</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2516651#M24147</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="320029" data-lia-user-login="pbiuser1234" class="lia-mention lia-mention-user"&gt;pbiuser1234&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Whether the advice given by&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="109790" data-lia-user-login="d_gosbell" class="lia-mention lia-mention-user"&gt;d_gosbell&lt;/a&gt;&amp;nbsp; has solved your confusion, if the problem has been solved you can mark the reply for the standard answer to help the other members find it more quickly. If not, please point it out.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Looking forward to your feedback.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Henry&lt;/P&gt;</description>
      <pubDate>Mon, 16 May 2022 07:12:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2516651#M24147</guid>
      <dc:creator>v-henryk-mstf</dc:creator>
      <dc:date>2022-05-16T07:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters from power bi report server to SSRS RDL does not work</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2517809#M24152</link>
      <description>&lt;P&gt;Thanks for the reply,&lt;/P&gt;&lt;P&gt;About opening an excel file, I tried this code but it doesn't work:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/" target="_blank"&gt;https://&amp;lt;ServerName&amp;gt;/&amp;lt;Reports&amp;gt;/report/&amp;lt;ReportFolderName&amp;gt;/&amp;lt;ReportName&amp;gt;?rs:format=excel&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If I change the question mark location anywhere before folder name - it leads me to the folder root. for example:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/" target="_blank"&gt;https://&amp;lt;ServerName&amp;gt;/&amp;lt;Reports&amp;gt;/report/&amp;lt;ReportFolderName&amp;gt;?/&amp;lt;ReportName&amp;gt;&amp;amp;rs:format=excel&lt;/A&gt;&lt;/P&gt;&lt;P&gt;What am I doing worong?&lt;/P&gt;&lt;P&gt;I have to say that "rs:embed=true" works fine written like this:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/" target="_blank"&gt;https://&amp;lt;ServerName&amp;gt;/&amp;lt;Reports&amp;gt;/report/&amp;lt;ReportFolderName&amp;gt;/&amp;lt;ReportName&amp;gt;?rs:embed=true&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;</description>
      <pubDate>Mon, 16 May 2022 14:12:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2517809#M24152</guid>
      <dc:creator>pbiuser1234</dc:creator>
      <dc:date>2022-05-16T14:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters from power bi report server to SSRS RDL does not work</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2517952#M24153</link>
      <description>&lt;P&gt;OK I found the solution &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I relied on another post of yours that I found:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN&gt;Note that you need to use the Webservice url (/reportserver by default), not the portal url (/reports by default)&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN&gt;&lt;A href="https://community.powerbi.com/t5/Report-Server/How-to-export-Excel-file-from-Power-BI-report-server-using-URL/td-p/897605" target="_blank"&gt;https://community.powerbi.com/t5/Report-Server/How-to-export-Excel-file-from-Power-BI-report-server-using-URL/td-p/897605&lt;/A&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks again!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Mooving on to check the&amp;nbsp;CONCATENATEX suggestion &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 May 2022 14:57:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2517952#M24153</guid>
      <dc:creator>pbiuser1234</dc:creator>
      <dc:date>2022-05-16T14:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters from power bi report server to SSRS RDL does not work</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2519718#M24173</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="320029" data-lia-user-login="pbiuser1234" class="lia-mention lia-mention-user"&gt;pbiuser1234&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your feedback.&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Henry&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 07:56:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2519718#M24173</guid>
      <dc:creator>v-henryk-mstf</dc:creator>
      <dc:date>2022-05-17T07:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters from power bi report server to SSRS RDL does not work</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2520184#M24178</link>
      <description>&lt;P&gt;Hi Henry,&lt;BR /&gt;So I've used the&amp;nbsp;CONCATENATEX for multiple choice selection and it works great if I choose some of the values. But for all values selected I get an error (don't see any reference in the log files), I'm guessing the problem is the length of the URL.&amp;nbsp;&lt;BR /&gt;1. Is there a way to shoten the URL?&lt;BR /&gt;2. I'm trying to write a DAX code to return URL with no filters if no selections were made, it doesn't work (returning any result without the IF statement works, also the ISFILTERED statement returns values correctly):&lt;BR /&gt;&lt;EM&gt;PaginatedaReportURL =&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _baseurl = "&lt;A href="https://ReportServer/reports/ReportName" target="_blank"&gt;https://ReportServer/reports/ReportName&lt;/A&gt;"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _selectemployee = CONCATENATEX(VALUES(Query1[Employee]), "&amp;amp;Employee=")&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _reportparameterEmployee = "?Employee="&amp;amp;_selectemployee&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _result_filterd = _baseurl&amp;amp;_reportparameterEmployee&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _result_all = _baseurl&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;return&lt;/EM&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;if(&amp;nbsp;ISFILTERED(Query1[Employee])="True",&amp;nbsp;var _result_filterd,&amp;nbsp;var _result_all&amp;nbsp;)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope you can help...Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 10:26:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2520184#M24178</guid>
      <dc:creator>pbiuser1234</dc:creator>
      <dc:date>2022-05-17T10:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters from power bi report server to SSRS RDL does not work</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2520497#M24179</link>
      <description>&lt;P&gt;Hi Henry,&lt;BR /&gt;So I've used the&amp;nbsp;CONCATENATEX for multiple choice selection and it works great if I choose some of the values. But for all values selected I get an error (don't see any reference in the log files), I'm guessing the problem is the length of the URL.&amp;nbsp;&lt;BR /&gt;1. Is there a way to shoten the URL?&lt;BR /&gt;2. I'm trying to write a DAX code to return URL with no filters if no selections were made, it doesn't work (returning any result without the IF statement works, also the ISFILTERED statement returns values correctly):&lt;BR /&gt;&lt;EM&gt;PaginatedaReportURL =&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _baseurl = "&lt;A href="https://reportserver/reports/ReportName" target="_blank" rel="nofollow noopener noreferrer"&gt;https://ReportServer/reports/ReportName&lt;/A&gt;"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _selectemployee = CONCATENATEX(VALUES(Query1[Employee]), "&amp;amp;Employee=")&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _reportparameterEmployee = "?Employee="&amp;amp;_selectemployee&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _result_filterd = _baseurl&amp;amp;_reportparameterEmployee&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var _result_all = _baseurl&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;return&lt;/EM&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;if(&amp;nbsp;ISFILTERED(Query1[Employee])="True",&amp;nbsp;var _result_filterd,&amp;nbsp;var _result_all&amp;nbsp;)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope you can help...Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 12:27:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2520497#M24179</guid>
      <dc:creator>pbiuser1234</dc:creator>
      <dc:date>2022-05-17T12:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters from power bi report server to SSRS RDL does not work</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2521991#M24187</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="320029" data-lia-user-login="pbiuser1234" class="lia-mention lia-mention-user"&gt;pbiuser1234&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;1. Is there a way to shoten the URL?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Not really, other than doing in IF in your code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="320029" data-lia-user-login="pbiuser1234" class="lia-mention lia-mention-user"&gt;pbiuser1234&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;2. I'm trying to write a DAX code to return URL with no filters if no selections were made,&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If you leave the parameter empty then Report Server will want to prompt the user for the parameter value. One option is to have a special value like "&amp;lt;ALL&amp;gt;" to return all the values, but you would have to add logic in your report query to cater for this or configure your report query as an expression. It depends on how you are dealing the multiple values in your report query as to how the logic should be adjusted.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 02:41:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2521991#M24187</guid>
      <dc:creator>d_gosbell</dc:creator>
      <dc:date>2022-05-18T02:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters from power bi report server to SSRS RDL does not work</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2523649#M24196</link>
      <description>&lt;P&gt;Hi again:)&lt;/P&gt;&lt;P&gt;I didn't leave the parameter empty, this is the code:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;if(&amp;nbsp;ISFILTERED(Query1[Employee])="True", _result_filterd, _result_all&amp;nbsp;)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Why do I get an error for this code?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 14:39:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2523649#M24196</guid>
      <dc:creator>pbiuser1234</dc:creator>
      <dc:date>2022-05-18T14:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters from power bi report server to SSRS RDL does not work</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2523715#M24198</link>
      <description>&lt;P&gt;OK found the problem...wrote "False" instead of False()&lt;/P&gt;&lt;P&gt;I'm new to DAX so learning the hard way I guess...&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 14:56:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-from-power-bi-report-server-to-SSRS-RDL-does/m-p/2523715#M24198</guid>
      <dc:creator>pbiuser1234</dc:creator>
      <dc:date>2022-05-18T14:56:49Z</dc:date>
    </item>
  </channel>
</rss>

