<?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: DAX SYNTAX IN POWER BI PAGINATED REPORTS in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-SYNTAX-IN-POWER-BI-PAGINATED-REPORTS/m-p/2393896#M62366</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , refer this, I think there isnothing function &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=w-LVgLexeEA" target="_blank"&gt;https://www.youtube.com/watch?v=w-LVgLexeEA&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Mar 2022 03:46:44 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2022-03-15T03:46:44Z</dc:date>
    <item>
      <title>DAX SYNTAX IN POWER BI PAGINATED REPORTS</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-SYNTAX-IN-POWER-BI-PAGINATED-REPORTS/m-p/2393248#M62325</link>
      <description>&lt;P&gt;In my Paginated Report I want to hide a row when a field is blank.&amp;nbsp; This is what I've tried so far but&amp;nbsp;&lt;/P&gt;&lt;P&gt;there is an error each time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;=Fields!ORD_ERR_ESO.Value = " "&lt;BR /&gt;=Fields!ORD_ERR_ESO.Valu = (" ")&lt;BR /&gt;=Fields!ORD_ERR_ESO.Value = [" "]&lt;BR /&gt;=Fields!ORD_ERR_ESO.Value = SPACE()&lt;BR /&gt;=Fields!ORD_ERR_ESO.Value = BLANK()&lt;BR /&gt;= IF( ISBLANK('ORD_ERR_ESO')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 17:39:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-SYNTAX-IN-POWER-BI-PAGINATED-REPORTS/m-p/2393248#M62325</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-14T17:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: DAX SYNTAX IN POWER BI PAGINATED REPORTS</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-SYNTAX-IN-POWER-BI-PAGINATED-REPORTS/m-p/2393896#M62366</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , refer this, I think there isnothing function &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=w-LVgLexeEA" target="_blank"&gt;https://www.youtube.com/watch?v=w-LVgLexeEA&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Mar 2022 03:46:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-SYNTAX-IN-POWER-BI-PAGINATED-REPORTS/m-p/2393896#M62366</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-03-15T03:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: DAX SYNTAX IN POWER BI PAGINATED REPORTS</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-SYNTAX-IN-POWER-BI-PAGINATED-REPORTS/m-p/2399385#M62712</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please update the expression of Textbox2 as below:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;=Fields!ORD_ERR_ESO.Value Is Nothing&lt;/LI-CODE&gt;
&lt;P&gt;or&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;=IsNothing(Fields!ORD_ERR_ESO.Value)&lt;/LI-CODE&gt;
&lt;P&gt;You can get more details about the expression examples in the following official documentation.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/power-bi/paginated-reports/report-builder-expression-examples#DecisionFunctions" target="_self"&gt;Expression examples in Power BI Report Builder&lt;/A&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;=IIF(IsNothing(Fields!LargePhoto.Value),True,False)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;=IIF(Fields!PhoneNumber.Value Is Nothing,"No Value",Fields!PhoneNumber.Value)&lt;/LI-CODE&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 02:56:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-SYNTAX-IN-POWER-BI-PAGINATED-REPORTS/m-p/2399385#M62712</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-17T02:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: DAX SYNTAX IN POWER BI PAGINATED REPORTS</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-SYNTAX-IN-POWER-BI-PAGINATED-REPORTS/m-p/2418402#M63928</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Thank You&lt;/STRONG&gt; to all who responded to my question.&amp;nbsp; I agree with the solution.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Mar 2022 16:10:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-SYNTAX-IN-POWER-BI-PAGINATED-REPORTS/m-p/2418402#M63928</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-25T16:10:56Z</dc:date>
    </item>
  </channel>
</rss>

