<?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 Formula for Counting Column Values from Previous Day Returns Blank Output in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4340701#M172357</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="568855" data-lia-user-login="Kedar_Pande" class="lia-mention lia-mention-user"&gt;Kedar_Pande&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thank you for your quick response. Tried your suggested formula but didn't work out for me&lt;/P&gt;</description>
    <pubDate>Mon, 23 Dec 2024 10:39:52 GMT</pubDate>
    <dc:creator>cgarg</dc:creator>
    <dc:date>2024-12-23T10:39:52Z</dc:date>
    <item>
      <title>DAX Formula for Counting Column Values from Previous Day Returns Blank Output</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4340666#M172351</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;Consider the below table &lt;EM&gt;abc&lt;/EM&gt;:&lt;/P&gt;&lt;P&gt;status&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dateend (mm/dd/yyyy)&lt;/P&gt;&lt;P&gt;Success&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/01/2023&lt;/P&gt;&lt;P&gt;Success&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/02/2023&lt;/P&gt;&lt;P&gt;Success&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/02/2023&lt;/P&gt;&lt;P&gt;Failure&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/08/2023&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A calendar table was built using &lt;EM&gt;abc&lt;/EM&gt; table. It also had same date format (mm/dd/yyyy)&lt;/P&gt;&lt;P&gt;1:* relationship is established from &lt;EM&gt;calendar&lt;/EM&gt; to &lt;EM&gt;abc&lt;/EM&gt; table with single cross filter direction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Date slicer is built using &lt;EM&gt;calendar&lt;/EM&gt; table.&lt;/P&gt;&lt;P&gt;Now, when a date is selected from slicer, I want to display count of 'success' &lt;EM&gt;status&lt;/EM&gt; for the date before the selected date.&lt;/P&gt;&lt;P&gt;For example, when we chose 01/02/2023 from slicer, we should get count of 'success' &lt;EM&gt;status&lt;/EM&gt; as 1 because we have only 1 &lt;EM&gt;success&lt;/EM&gt; on 01/01/2023.&amp;nbsp;&lt;/P&gt;&lt;P&gt;To calculate previous date, dax was written as:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;EM&gt;dax_prevDay = PREVIOUSDAY(CalendarTable[Date])&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;dax_prevDay is also in mm/dd/yyyy format &amp;amp; is giving expected result&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the dax which will do the count of 'success' status is:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN&gt;dax_test = CALCULATE(COUNT(abc[status]),&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;FILTER(abc,abc[status]="Success"), &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;FILTER(abc,abc[dateend]=[dax_prevDay]))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But, the above dax is giving &lt;EM&gt;Blank&lt;/EM&gt; as result even if there is data for previous date.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Note:&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;It seems the problem is with 2nd filter condition.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;When I hard core date in filter cond:&amp;nbsp;FILTER(abc,abc[dateend]=DATE(2023,1,1)), I'm getting correct output. The doubt here is even [dax_prevDay] is in Date type&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;I even explicitly converted [dax_prevDay] to date type assuming if by any chance [dax_prevDay] is in text by enclosing this dax inside &lt;EM&gt;DATEVALUE function. &lt;/EM&gt;But, still the issue is not resolved&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Mon, 23 Dec 2024 10:12:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4340666#M172351</guid>
      <dc:creator>cgarg</dc:creator>
      <dc:date>2024-12-23T10:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula for Counting Column Values from Previous Day Returns Blank Output</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4340671#M172352</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="904085" data-lia-user-login="cgarg" class="lia-mention lia-mention-user"&gt;cgarg&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can try:&lt;/P&gt;&lt;PRE&gt;dax_test = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;COUNT(abc[status]),&lt;BR /&gt;abc[status] = "Success",&lt;BR /&gt;FILTER(&lt;BR /&gt;ALL(abc),&lt;BR /&gt;abc[dateend] = [dax_prevDay]&lt;BR /&gt;)&lt;BR /&gt;)&lt;/PRE&gt;&lt;P&gt;Ensure that your CalendarTable[Date] is properly set up and all relationships are correctly established in your model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":love_letter:"&gt;💌&lt;/span&gt; &lt;STRONG&gt;If this helped, a Kudos &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; or Solution mark &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; would be great! &lt;span class="lia-unicode-emoji" title=":party_popper:"&gt;🎉&lt;/span&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Cheers,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Kedar&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;A href="https://www.linkedin.com/in/kedar-pande" target="_blank" rel="noopener"&gt;Connect on LinkedIn&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Dec 2024 10:18:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4340671#M172352</guid>
      <dc:creator>Kedar_Pande</dc:creator>
      <dc:date>2024-12-23T10:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula for Counting Column Values from Previous Day Returns Blank Output</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4340701#M172357</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="568855" data-lia-user-login="Kedar_Pande" class="lia-mention lia-mention-user"&gt;Kedar_Pande&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thank you for your quick response. Tried your suggested formula but didn't work out for me&lt;/P&gt;</description>
      <pubDate>Mon, 23 Dec 2024 10:39:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4340701#M172357</guid>
      <dc:creator>cgarg</dc:creator>
      <dc:date>2024-12-23T10:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula for Counting Column Values from Previous Day Returns Blank Output</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4340703#M172358</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="904085" data-lia-user-login="cgarg" class="lia-mention lia-mention-user"&gt;cgarg&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Even though dax_prevDay is a Date type, it's good practice to ensure it's returned as a valid Date type in the filter condition.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Dec 2024 10:42:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4340703#M172358</guid>
      <dc:creator>Kedar_Pande</dc:creator>
      <dc:date>2024-12-23T10:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula for Counting Column Values from Previous Day Returns Blank Output</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4340709#M172360</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="568855" data-lia-user-login="Kedar_Pande" class="lia-mention lia-mention-user"&gt;Kedar_Pande&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I believe that the Date type returned is valid because when I checked the output of dax_prevDay by populating the card visual, I was getting correct result&lt;/P&gt;</description>
      <pubDate>Mon, 23 Dec 2024 10:47:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4340709#M172360</guid>
      <dc:creator>cgarg</dc:creator>
      <dc:date>2024-12-23T10:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula for Counting Column Values from Previous Day Returns Blank Output</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4344410#M172513</link>
      <description>&lt;P&gt;Thanks for the reply from&amp;nbsp;Kedar_Pande.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="904085" data-lia-user-login="cgarg" class="lia-mention lia-mention-user"&gt;cgarg&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a slicer to use the field "Date" of a new table.&lt;/P&gt;
&lt;P&gt;Then create two new measures:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;judgement = IF(MAX('abc'[dateend])=[dax_prevDay]&amp;amp;&amp;amp;MAX('abc'[status ])="Success",1,0)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;count = SUMX(VALUES('abc'[dateend]),[judgement])&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Zhu&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post&amp;nbsp;&lt;I&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/I&gt;, then please consider&amp;nbsp;&lt;I&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/I&gt;&amp;nbsp;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Dec 2024 08:43:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4344410#M172513</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-27T08:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula for Counting Column Values from Previous Day Returns Blank Output</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4344614#M172517</link>
      <description>&lt;P&gt;Hi &amp;nbsp;,Thank you for your response. This doesn't workout for me either (probably because the dataset I've is huge having several columns &amp;amp; multiple values even for 'status' column &amp;amp; hence conditions are failing). However, below is the dax formula that worked for me:&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;test =&lt;/P&gt;&lt;P&gt;&lt;EM&gt;CALCULATE(&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp;COUNT(abc[status]),&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &lt;EM&gt;CalendarTable[Date] = MAX(&lt;EM&gt;CalendarTable[Date]-1)&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;EM&gt;)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;I've explicitly set the status filter to Success from filters pane.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to thank the community for taking pro-active efforts in resolving the issue. Thank you once again!&lt;/P&gt;&lt;P&gt;Anonymous&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Dec 2024 11:58:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4344614#M172517</guid>
      <dc:creator>cgarg</dc:creator>
      <dc:date>2024-12-27T11:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula for Counting Column Values from Previous Day Returns Blank Output</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4345253#M172548</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="904085" data-lia-user-login="cgarg" class="lia-mention lia-mention-user"&gt;cgarg&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try with this measure:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CountSuccessPD =
CALCULATE (
    COUNTROWS ( abc ),
    PREVIOUSDAY (
        ALLSELECTED ( CalendarTable[Date] )
    ),
    abc[status]="Success"
)&lt;/LI-CODE&gt;&lt;P&gt;I hope this helps, if so please accept as a solution. Kudos are welcome&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Dec 2024 18:48:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4345253#M172548</guid>
      <dc:creator>pcoley</dc:creator>
      <dc:date>2024-12-28T18:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula for Counting Column Values from Previous Day Returns Blank Output</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4345674#M172575</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="904085" data-lia-user-login="cgarg" class="lia-mention lia-mention-user"&gt;cgarg&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;It seems that you have gotten a solution. Could you please mark your reply as solution? It will help the others in the community find the solution easily if they face the same problem as yours. Thank you very much for your kind cooperation!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Best Regards,&lt;BR /&gt;Zhu&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Dec 2024 01:33:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-for-Counting-Column-Values-from-Previous-Day-Returns/m-p/4345674#M172575</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-30T01:33:10Z</dc:date>
    </item>
  </channel>
</rss>

