<?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: Paginated Reports &amp;quot;All&amp;quot; parameter in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1883081#M19600</link>
    <description>&lt;P&gt;Amazing. I've been trying to figure this out for two days. Thanks!&lt;/P&gt;</description>
    <pubDate>Sat, 05 Jun 2021 01:24:03 GMT</pubDate>
    <dc:creator>Craig_Donoghue</dc:creator>
    <dc:date>2021-06-05T01:24:03Z</dc:date>
    <item>
      <title>Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/695067#M10393</link>
      <description>&lt;P&gt;I have connected Paginated Reports to a dataset that I have previously published in Power BI. I'd like to have a parameter to limit the results by Manufacturing Plant. But I'd also like to be able to return all data.&lt;BR /&gt;&lt;BR /&gt;In SSRS, I used to append a row into the parameter's available values query with the value "All" and then, in the sql, check for the "ALL" value and, if detected, process the query with no filter on that field. I've tried to do the same thing in Paginated Reports.&lt;BR /&gt;&lt;BR /&gt;Howver, I can't seem to append my 'All' or 'NoFilter' row. The dax works in DAX stuidio, but Paginated Reports isn't processing it. Can anyone offer some advise? Here is the Dax that I'd like to use to cause the aparemter to provide a list of available Plants and also a row for "All," or "No Filter."&lt;/P&gt;&lt;PRE&gt;EVALUATE
 (
    UNION (
        DATATABLE (
            "Plant Number", STRING,
            "Plant Name", STRING,
            {
                { "ALL", "No Filter" }
            }
        ),
        SUMMARIZE ( 'PLANT PR1', 'PLANT PR1'[Plant Number], 'PLANT PR1'[Plant Name] )
    )
)&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 May 2019 16:28:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/695067#M10393</guid>
      <dc:creator>RBunting</dc:creator>
      <dc:date>2019-05-20T16:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/696569#M10416</link>
      <description>&lt;P&gt;What error message are you getting? I just tried doing the same thing against a copy of the Adventure Works database with the following query and I was able to create a dataset in my report with no problems.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;EVALUATE
 (
    UNION (
        DATATABLE (
            "Country Region Code", STRING,
            "Country Region Name", STRING,
            {
                { "ALL", "No Filter" }
            }
        ),
        SUMMARIZE ( Geography, Geography[Country Region Code], Geography[Country Region Name] )
    )
)&lt;/PRE&gt;</description>
      <pubDate>Wed, 22 May 2019 02:53:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/696569#M10416</guid>
      <dc:creator>d_gosbell</dc:creator>
      <dc:date>2019-05-22T02:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/697420#M10431</link>
      <description>&lt;P&gt;Blast.&amp;nbsp; It was a picky little syntax error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;EVALUATE
 ( ...&lt;/PRE&gt;&lt;P&gt;The command shown above is no good.&amp;nbsp; Report Builder does not like that white space between the EVALUATE keyword and the open pren.&amp;nbsp; The following variation&amp;nbsp;&lt;SPAN&gt;worked fine&lt;/SPAN&gt;.&lt;/P&gt;&lt;PRE&gt;EVALUATE( ...&lt;/PRE&gt;&lt;P&gt;Thanks for taking the time to look into the problem. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2019 15:35:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/697420#M10431</guid>
      <dc:creator>RBunting</dc:creator>
      <dc:date>2019-05-22T15:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/697623#M10437</link>
      <description>&lt;P&gt;The Report Builder Query editor does it's own parsing and sometimes it can't handle things which are actually valid syntax. In terms of pure DAX syntax the whitespace/linebreaks are not significant, plus EVALUATE is a keyword not a function so you don't even need the ( ) you can just do EVALUATE UNION(...)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or the other thing that could have gone wrong is that are at least 2 different types of space characters. The unicode character set has both a normal space and a non-breaking space (which affects where soft line breaks can appear). Report Builder does not work properly with non-breaking spaces, but you typically only get these when copying from web pages or other documents.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note that when you paste into DAX Studio these characters get replaced with "standard" spaces so sometimes pasting into DAX Studio then re-copying and pasting the same query back into Report Builder will fix these weird "syntax" errors.&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2019 21:00:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/697623#M10437</guid>
      <dc:creator>d_gosbell</dc:creator>
      <dc:date>2019-05-22T21:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/925232#M12949</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/107167"&gt;@RBunting&lt;/a&gt;&amp;nbsp;, I have the same business case - I already have my Parameter values with All., but now the problem is with the Dataset query.&lt;/P&gt;&lt;P&gt;How d you manage to filter - is All - Show All, otherwise the selected value.&lt;/P&gt;&lt;P&gt;I'm using this condition RSCustomDaxFilter(@Measure,EqualToCondition,[v_MeasureDetail_Latest].[MeasureCode],String) in the main dataset query. but here I can't add any OR condition.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to do it in the expression of the Parameter itself like:&lt;/P&gt;&lt;P&gt;IIF(@Measure = "All", Nothing, Parameters!Measure.Value) or&amp;nbsp;IIF(@Measure = "All", True, Parameters!Measure.Value), but no luck there either, I get error for passing invalid value to the parameter.&lt;/P&gt;&lt;P&gt;How did you apply the parameter to your dataset afterwards?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 10:34:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/925232#M12949</guid>
      <dc:creator>pdacheva</dc:creator>
      <dc:date>2020-02-07T10:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/925549#M12955</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;A title="" href="https://community.powerbi.com/t5/user/viewprofilepage/user-id/100127" target="_self"&gt;pdacheva&lt;/A&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;My entire query is a dynamic expression that generates a valid DAX statement.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;During the evaluation of the query text, I check the parameters and build the specific query language to send to the source system.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;="EVALUATE(FILTER(...  " + iif( Parameters!Plant.Value &amp;lt;&amp;gt; "ALL", "&amp;amp;&amp;amp; 'PLANT PR1'[Plant Number] = """ &amp;amp; Parameters!Plant.Value &amp;amp; """", "") + "  ...&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so, if the parameter is not set to "all," this line in the query becomes a piece of the filter conditions "&amp;amp;&amp;amp; 'PLANT PR1'[Plant Number] = "99999999".&amp;nbsp; But if the plant number IS set to "all" then this whole bit just gets omitted from the DAX query and no filter on Plant is ever applied.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Fri, 07 Feb 2020 16:00:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/925549#M12955</guid>
      <dc:creator>RBunting</dc:creator>
      <dc:date>2020-02-07T16:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/983958#M13525</link>
      <description>&lt;P&gt;Hi RBunting,&lt;/P&gt;&lt;P&gt;Thank you for your reply!&lt;/P&gt;&lt;P&gt;Sorry for not replying earlier - I changed the filtering of this dimension within the DAX (not using the&amp;nbsp;RSCustomDaxFilter formula) and it worked as expected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2020 11:44:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/983958#M13525</guid>
      <dc:creator>pdacheva</dc:creator>
      <dc:date>2020-03-20T11:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1221115#M15018</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100127"&gt;@pdacheva&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/107167"&gt;@RBunting&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Can you please share me the format of the filter in DAX? I tried but getting error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2020 10:43:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1221115#M15018</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-14T10:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1221407#M15022</link>
      <description>&lt;P&gt;Hi @Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Make sure you add the filter at the end of the SUMMARIZE or SUMMARIZECOLUMNS. If you share the error message maybe the community could help better. See below how I am filtering my DAX:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dax filter.PNG" style="width: 773px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/311072i7CB9F3C6CE2F96F6/image-size/large?v=v2&amp;amp;px=999" role="button" title="dax filter.PNG" alt="dax filter.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2020 12:17:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1221407#M15022</guid>
      <dc:creator>pdacheva</dc:creator>
      <dc:date>2020-07-14T12:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1221478#M15024</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100127"&gt;@pdacheva&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Thanks. "All" is working. If i set All as default then working good and if i add available values from query then All is not picking up as a default. Any idea? Can you share your email?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2020 12:50:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1221478#M15024</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-14T12:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1221491#M15025</link>
      <description>&lt;P&gt;Well, in this case you need to make sure you have "All" in the available values of your parameter query. Just do a UNION and add dummy record "All" in the available values of your parameter list.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2020 12:54:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1221491#M15025</guid>
      <dc:creator>pdacheva</dc:creator>
      <dc:date>2020-07-14T12:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1265272#M15372</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/107167"&gt;@RBunting&lt;/a&gt;&amp;nbsp;- Thanks so much for all the info, super helpful in converting our SSRS to Paginated. One question regarding the addition of the "All" value. I was able to get the union working in my dataset, however when I attempt to add the ORDER BY functionality the expression breaks throwing the following error: "A single value column cannot be determined". The issue is resolved by removing the union, which gets me back to square one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone ran into this issue and can offer any advice?&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 16:04:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1265272#M15372</guid>
      <dc:creator>mvabalaitis</dc:creator>
      <dc:date>2020-07-31T16:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1472684#M16540</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your post was very helpful. However the filter condition fails when multiple values are selected in report parameter.&lt;/P&gt;&lt;P&gt;Here is what I am using: The report execution fails when I supply multiple values on Program Name parameter. Any tips&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100127"&gt;@pdacheva&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;FILTER('TreatyMaster_BI',(@TreatyMasterBIProgramName= " ALL" || 'TreatyMaster_BI'[Program Name] = @TreatyMasterBIProgramName)),&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2020 22:18:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1472684#M16540</guid>
      <dc:creator>RuchikaSoni</dc:creator>
      <dc:date>2020-11-03T22:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1473612#M16545</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/199679"&gt;@RuchikaSoni&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Yes, you cannot use "=" for a multiselect parameter. Set it up like this:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;FILTER('TreatyMaster_BI',(@TreatyMasterBIProgramName= " ALL" ||&amp;nbsp; &lt;/SPAN&gt;PATHCONTAINS(&lt;SPAN&gt;@TreatyMasterBIProgramName&lt;/SPAN&gt;,&lt;SPAN&gt;'TreatyMaster_BI'[Program Name]&lt;/SPAN&gt;))&lt;/P&gt;&lt;P&gt;And then, in your dataset's parameters setting, set the&amp;nbsp;&lt;SPAN&gt;@TreatyMasterBIProgramName as &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;=JOIN(Parameters!TreatyMasterBIProgramName.Value,"|")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This should work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Nov 2020 07:43:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1473612#M16545</guid>
      <dc:creator>pdacheva</dc:creator>
      <dc:date>2020-11-04T07:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1474839#M16560</link>
      <description>&lt;P&gt;Thanks very much&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100127"&gt;@pdacheva&lt;/a&gt;&amp;nbsp;. The solution worked.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Nov 2020 16:11:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1474839#M16560</guid>
      <dc:creator>RuchikaSoni</dc:creator>
      <dc:date>2020-11-04T16:11:04Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1505699#M16802</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100127"&gt;@pdacheva&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am currently using sql logic to append "ALL" in the parameter list. The logic is working fine but since I have a lot of parameters on my paginated report I feel the report is taking longer to load initally.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you suggest How to union "ALL" using DAX?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Logic to append "all" in parameters using sql is as follows:&lt;/P&gt;&lt;P&gt;select DISTINCT [Reporting SBU]&lt;BR /&gt;from TreatyMaster_BI&lt;BR /&gt;WHERE (([Company] in (@TreatyMasterBICompany)) OR ' ALL' IN (@TreatyMasterBICompany))&lt;BR /&gt;and [Reporting SBU] is not null&lt;BR /&gt;UNION&lt;BR /&gt;SELECT ' ALL' as 'Reporting SBU'&lt;BR /&gt;ORDER BY 'Reporting SBU'&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 19:24:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1505699#M16802</guid>
      <dc:creator>RuchikaSoni</dc:creator>
      <dc:date>2020-11-19T19:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1506560#M16821</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/199679"&gt;@RuchikaSoni&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It should be something like that. Just check the syntax.&lt;/P&gt;&lt;P&gt;// DAX Query&lt;BR /&gt;EVALUATE&lt;BR /&gt;UNION(&lt;BR /&gt;SUMMARIZE(&lt;BR /&gt;FILTER(TreatyMaster_BI, (PATHCONTAINS(@TreatyMasterBICompany,'TreatyMaster_BI'[Company]) || @TreatyMasterBICompany = "All") &amp;amp;&amp;amp; NOT(ISBLANK('TreatyMaster_BI'[[Reporting SBU]])) )&lt;BR /&gt;TreatyMaster_BI[Reporting SBU])&lt;BR /&gt;, DATATABLE (&lt;BR /&gt;"Reporting SBU", STRING,&lt;BR /&gt;{&lt;BR /&gt;{" All"}&lt;BR /&gt;}&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Fri, 20 Nov 2020 07:19:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1506560#M16821</guid>
      <dc:creator>pdacheva</dc:creator>
      <dc:date>2020-11-20T07:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1508134#M16831</link>
      <description>&lt;P&gt;Thanks very much,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100127"&gt;@pdacheva&lt;/a&gt;&amp;nbsp;. The query worked! Appreciate all the help you extended.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Nov 2020 20:09:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1508134#M16831</guid>
      <dc:creator>RuchikaSoni</dc:creator>
      <dc:date>2020-11-20T20:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1883081#M19600</link>
      <description>&lt;P&gt;Amazing. I've been trying to figure this out for two days. Thanks!&lt;/P&gt;</description>
      <pubDate>Sat, 05 Jun 2021 01:24:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/1883081#M19600</guid>
      <dc:creator>Craig_Donoghue</dc:creator>
      <dc:date>2021-06-05T01:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Reports "All" parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/4064352#M36175</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/107167"&gt;@RBunting&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/305410"&gt;@Craig_Donoghue&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/199679"&gt;@RuchikaSoni&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100127"&gt;@pdacheva&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/32799"&gt;@mvabalaitis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running into the same requirement. I could not use RsCustomdaxfilter and filter dax function in the same query. The query is not picking up the parameter.&amp;nbsp;&lt;BR /&gt;would you let me know how you used both like in the image shared above?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 18:56:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Reports-quot-All-quot-parameter/m-p/4064352#M36175</guid>
      <dc:creator>V_20</dc:creator>
      <dc:date>2024-07-26T18:56:31Z</dc:date>
    </item>
  </channel>
</rss>

