<?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: Get count of items that haven't been viewed in a selected timeframe in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4142188#M164620</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="785783" data-lia-user-login="Selva-Salimi" class="lia-mention lia-mention-user"&gt;Selva-Salimi&lt;/a&gt;&amp;nbsp;I don't have a country dimension table, so I created one now. It had a 1:M relationship on country with the other 2 tables - Master List &amp;amp; Master Items.&lt;BR /&gt;I used the country field from the Dimension table in the visual instead of pulling it from the master item table.&lt;BR /&gt;It didn't work.&lt;/P&gt;</description>
    <pubDate>Tue, 10 Sep 2024 07:27:38 GMT</pubDate>
    <dc:creator>SahityaYeruband</dc:creator>
    <dc:date>2024-09-10T07:27:38Z</dc:date>
    <item>
      <title>Get count of items that haven't been viewed in a selected timeframe</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4140638#M164540</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create a measure that counts the items that have not been viewed. This can be for the whole period (last 12 months) or for a specific month/quarter/year.&lt;BR /&gt;I have a dataset which contains details like -&amp;nbsp;&lt;BR /&gt;Item ID, user_id, viewed_timestamp, item_country, item_department etc ..&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Sample data :&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Item_ID&lt;/TD&gt;&lt;TD&gt;user_id&lt;/TD&gt;&lt;TD&gt;viewed_timestamp&lt;/TD&gt;&lt;TD&gt;Country&lt;/TD&gt;&lt;TD&gt;Dept&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;123&lt;/TD&gt;&lt;TD&gt;12/5/2023&lt;/TD&gt;&lt;TD&gt;USA&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;USA&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;234&lt;/TD&gt;&lt;TD&gt;2/1/2024&lt;/TD&gt;&lt;TD&gt;China&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;123&lt;/TD&gt;&lt;TD&gt;12/5/2023&lt;/TD&gt;&lt;TD&gt;China&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here, Item 2 was never viewed, item 1 was not viewed in Jan or Feb and Item 3 was not viewed in Jan.&lt;BR /&gt;&lt;BR /&gt;So the outputs, when there are no time filters applied -&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Country&lt;/TD&gt;&lt;TD&gt;Dept&lt;/TD&gt;&lt;TD&gt;Items with 0 Viewes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;USA&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;China&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When December is selected :&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Country&lt;/TD&gt;&lt;TD&gt;Dept&lt;/TD&gt;&lt;TD&gt;Items with 0 Viewes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;USA&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;China&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When Jan is selcted :&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Country&lt;/TD&gt;&lt;TD&gt;Dept&lt;/TD&gt;&lt;TD&gt;Items with 0 Viewes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;USA&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;China&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Similarly when Feb is selected :&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Country&lt;/TD&gt;&lt;TD&gt;Dept&lt;/TD&gt;&lt;TD&gt;Items with 0 Viewes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;USA&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;China&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, I have a master list of Items along with it's details. The relationship between these 2 datasets is 1:M on the Item ID.&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 12:34:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4140638#M164540</guid>
      <dc:creator>SahityaYeruband</dc:creator>
      <dc:date>2024-09-09T12:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Get count of items that haven't been viewed in a selected timeframe</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4140661#M164541</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="697559" data-lia-user-login="SahityaYeruband" class="lia-mention lia-mention-user"&gt;SahityaYeruband&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can write a measure as follows:&lt;/P&gt;&lt;P&gt;UnviewedItemsCount =&lt;BR /&gt;VAR ViewedItems = CALCULATETABLE(VALUES(ViewedItems[Item_ID]),NOT(ISBLANK(ViewedItems[viewed_timestamp])))&lt;BR /&gt;VAR AllItems = VALUES(MasterItems[Item_ID])&lt;BR /&gt;VAR UnviewedItems = EXCEPT(AllItems, ViewedItems)&lt;BR /&gt;RETURN&lt;BR /&gt;COUNTROWS(UnviewedItems)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this post helps, then I would appreciate a thumbs up&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;and mark it as the solution&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 12:53:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4140661#M164541</guid>
      <dc:creator>Selva-Salimi</dc:creator>
      <dc:date>2024-09-09T12:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: Get count of items that haven't been viewed in a selected timeframe</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4140732#M164543</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="785783" data-lia-user-login="Selva-Salimi" class="lia-mention lia-mention-user"&gt;Selva-Salimi&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thank you for the quick response. I have applied the logic as shared by you. However, its working only when no time filter is selected.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;When selecting a specific time period (in the below case - yr = 2024)&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Same for any other month in the available data as well.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 13:29:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4140732#M164543</guid>
      <dc:creator>SahityaYeruband</dc:creator>
      <dc:date>2024-09-09T13:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Get count of items that haven't been viewed in a selected timeframe</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4140758#M164544</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="697559" data-lia-user-login="SahityaYeruband" class="lia-mention lia-mention-user"&gt;SahityaYeruband&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;did you want to ignore any filters on all items? then you might need to update that part as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;VAR AllItems = CALCULATETABLE( VALUES(MasterItems[Item_ID]), ALL(MasterItems)&amp;nbsp;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did not understand exactly from the shared photos which part of the calculations it is related to? And why are there three tables?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this post helps, then I would appreciate a thumbs up&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;and mark it as the solution&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 13:44:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4140758#M164544</guid>
      <dc:creator>Selva-Salimi</dc:creator>
      <dc:date>2024-09-09T13:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: Get count of items that haven't been viewed in a selected timeframe</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4140796#M164546</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="785783" data-lia-user-login="Selva-Salimi" class="lia-mention lia-mention-user"&gt;Selva-Salimi&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Yeah ideally the complete marsters list needs to be considered. Sorry for not mentioning that before.&lt;BR /&gt;However, after making changes as suggested, there is no luck.&lt;BR /&gt;I have 3 visuals one for each measure created. I had 2 of these seperately so added the 3rd visual after creating the measure, sorry for any confusion there.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 14:01:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4140796#M164546</guid>
      <dc:creator>SahityaYeruband</dc:creator>
      <dc:date>2024-09-09T14:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: Get count of items that haven't been viewed in a selected timeframe</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4140944#M164559</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="697559" data-lia-user-login="SahityaYeruband" class="lia-mention lia-mention-user"&gt;SahityaYeruband&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems that you select the country from your fact table which is not correct. you should use a country "dimension" table instead. because the fact table will be filtered based on the selected slicers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hope it helps!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this post helps, then I would appreciate a thumbs up&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;and mark it as the solution&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 15:28:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4140944#M164559</guid>
      <dc:creator>Selva-Salimi</dc:creator>
      <dc:date>2024-09-09T15:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: Get count of items that haven't been viewed in a selected timeframe</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4142022#M164615</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="697559" data-lia-user-login="SahityaYeruband" class="lia-mention lia-mention-user"&gt;SahityaYeruband&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Can you upload your pbix file, or a little more accurate example data, so that we can better understand your problem, and then help you to solve your difficulties, looking forward to your reply, after receiving your reply, I will be the first time to contact you!&lt;/P&gt;
&lt;P&gt;Hope it helps!&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Community Support Team_ Tom Shen&lt;/P&gt;
&lt;P&gt;If this post helps then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 06:01:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4142022#M164615</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-09-10T06:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: Get count of items that haven't been viewed in a selected timeframe</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4142188#M164620</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="785783" data-lia-user-login="Selva-Salimi" class="lia-mention lia-mention-user"&gt;Selva-Salimi&lt;/a&gt;&amp;nbsp;I don't have a country dimension table, so I created one now. It had a 1:M relationship on country with the other 2 tables - Master List &amp;amp; Master Items.&lt;BR /&gt;I used the country field from the Dimension table in the visual instead of pulling it from the master item table.&lt;BR /&gt;It didn't work.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 07:27:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4142188#M164620</guid>
      <dc:creator>SahityaYeruband</dc:creator>
      <dc:date>2024-09-10T07:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: Get count of items that haven't been viewed in a selected timeframe</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4142623#M164638</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="697559" data-lia-user-login="SahityaYeruband" class="lia-mention lia-mention-user"&gt;SahityaYeruband&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The relationship between these two tables should have a 'single' cross-filter direction from the dimension table to the fact table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this post helps, then I would appreciate a thumbs up&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;and mark it as the solution&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 10:47:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4142623#M164638</guid>
      <dc:creator>Selva-Salimi</dc:creator>
      <dc:date>2024-09-10T10:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: Get count of items that haven't been viewed in a selected timeframe</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4146780#M164779</link>
      <description>&lt;P&gt;The below worked -&amp;nbsp;&lt;BR /&gt;Very similar to the one suggested by&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="785783" data-lia-user-login="Selva-Salimi" class="lia-mention lia-mention-user"&gt;Selva-Salimi&lt;/a&gt;&amp;nbsp; -&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;ViewedItems = CALCULATETABLE(COUNT(ViewedItems[Item_ID]),NOT(ISBLANK(ViewedItems[viewed_timestamp])))&lt;BR /&gt;All Items to be the same across different values of timestamp -&amp;nbsp;&lt;BR /&gt;AllItems =&amp;nbsp;VALUES(MasterItems[Item_ID])&lt;BR /&gt;CALCULATE(COUNT(MasterItems[Item_ID]), ALL(ViewedItems[viewed_timestamp].[Year]),ALL(ViewedItems[viewed_timestamp].[Quarter]), ALL(ViewedItems[viewed_timestamp].[Month]))&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;UnViewed = AllItems - ViewedItems&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2024 09:11:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-count-of-items-that-haven-t-been-viewed-in-a-selected/m-p/4146780#M164779</guid>
      <dc:creator>SahityaYeruband</dc:creator>
      <dc:date>2024-09-12T09:11:21Z</dc:date>
    </item>
  </channel>
</rss>

