<?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 How to hide blank rows in table visual without using visual level filter in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-blank-rows-in-table-visual-without-using-visual/m-p/3432329#M130140</link>
    <description>&lt;P&gt;Hi ,&lt;BR /&gt;&lt;BR /&gt;I have the table visual wher Price and Last Updated Date are measures and I have "Out Of Date" Slicer. Upon clicing on out of date slicer the below table should reflect only those Id rows where the Last updated date is not more than 365 days.&lt;BR /&gt;I know I can achive this by applying visual level filter where last udpated is not blank&amp;nbsp; but I would like to know is there any other way around we acheive this only thourgh Dax and not applying any filter on the visual.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;ID&lt;/TD&gt;&lt;TD&gt;Country&lt;/TD&gt;&lt;TD&gt;Price&lt;/TD&gt;&lt;TD&gt;Last Updated Date&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Algeria&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;Feb-23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;Belgium&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Mar-23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;Canada&lt;/TD&gt;&lt;TD&gt;237&lt;/TD&gt;&lt;TD&gt;Jan-20&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Thanks in Advance!&lt;/P&gt;</description>
    <pubDate>Fri, 15 Sep 2023 05:34:48 GMT</pubDate>
    <dc:creator>as1195</dc:creator>
    <dc:date>2023-09-15T05:34:48Z</dc:date>
    <item>
      <title>How to hide blank rows in table visual without using visual level filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-blank-rows-in-table-visual-without-using-visual/m-p/3432329#M130140</link>
      <description>&lt;P&gt;Hi ,&lt;BR /&gt;&lt;BR /&gt;I have the table visual wher Price and Last Updated Date are measures and I have "Out Of Date" Slicer. Upon clicing on out of date slicer the below table should reflect only those Id rows where the Last updated date is not more than 365 days.&lt;BR /&gt;I know I can achive this by applying visual level filter where last udpated is not blank&amp;nbsp; but I would like to know is there any other way around we acheive this only thourgh Dax and not applying any filter on the visual.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;ID&lt;/TD&gt;&lt;TD&gt;Country&lt;/TD&gt;&lt;TD&gt;Price&lt;/TD&gt;&lt;TD&gt;Last Updated Date&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Algeria&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;Feb-23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;Belgium&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Mar-23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;Canada&lt;/TD&gt;&lt;TD&gt;237&lt;/TD&gt;&lt;TD&gt;Jan-20&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Thanks in Advance!&lt;/P&gt;</description>
      <pubDate>Fri, 15 Sep 2023 05:34:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-blank-rows-in-table-visual-without-using-visual/m-p/3432329#M130140</guid>
      <dc:creator>as1195</dc:creator>
      <dc:date>2023-09-15T05:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide blank rows in table visual without using visual level filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-blank-rows-in-table-visual-without-using-visual/m-p/3434762#M130299</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="437676" data-lia-user-login="as1195" class="lia-mention lia-mention-user"&gt;as1195&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp;Create a New Calculated Table&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;FilteredTable =
FILTER(
    YourOriginalTable,
    DATEDIFF(YourOriginalTable[Last Updated Date], TODAY(), DAY) &amp;lt;= 365
)&lt;/LI-CODE&gt;&lt;P&gt;2.&amp;nbsp;Use the New Calculated Table in Your Visual&lt;/P&gt;&lt;P&gt;3. Configure the "Out Of Date" Slicer:&amp;nbsp;Make sure your "Out Of Date" slicer is correctly configured to filter the "FilteredTable" based on your slicer selections.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Should you require further details or information, please do not hesitate to reach out to me.&lt;/P&gt;</description>
      <pubDate>Sun, 17 Sep 2023 17:24:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-blank-rows-in-table-visual-without-using-visual/m-p/3434762#M130299</guid>
      <dc:creator>Sahir_Maharaj</dc:creator>
      <dc:date>2023-09-17T17:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide blank rows in table visual without using visual level filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-blank-rows-in-table-visual-without-using-visual/m-p/3439610#M130593</link>
      <description>&lt;P&gt;Hi Sahir,&lt;BR /&gt;&lt;BR /&gt;Thank You for the reply.&lt;BR /&gt;I cannot use the filter function here as it replicates the whole target table with the condition.The example which I provided earlier was just sample but in real time I have a very big fact table and also the table in visualization included other Dax measures also&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 08:38:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-blank-rows-in-table-visual-without-using-visual/m-p/3439610#M130593</guid>
      <dc:creator>as1195</dc:creator>
      <dc:date>2023-09-20T08:38:01Z</dc:date>
    </item>
  </channel>
</rss>

