<?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: show icons based on previous value of measure in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/show-icons-based-on-previous-value-of-measure/m-p/4246305#M168111</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="471456" data-lia-user-login="rautaniket0077" class="lia-mention lia-mention-user"&gt;rautaniket0077&lt;/a&gt;&amp;nbsp;, Try updated one to handle blanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a measure to compute the score:&lt;/P&gt;
&lt;P&gt;Score = &lt;BR /&gt;IF(&lt;BR /&gt;ISBLANK(SUM('Table'[Total Records])) || ISBLANK(SUM('Table'[Bad Records])),&lt;BR /&gt;BLANK(),&lt;BR /&gt;(SUM('Table'[Total Records]) - SUM('Table'[Bad Records])) * 100 / SUM('Table'[Total Records])&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a measure to get the previous non-hyphen score:&lt;/P&gt;
&lt;P&gt;Previous Score = &lt;BR /&gt;VAR CurrentSort = MAX('Table'[Sort])&lt;BR /&gt;VAR CurrentRule = MAX('Table'[Rule])&lt;BR /&gt;RETURN&lt;BR /&gt;CALCULATE(&lt;BR /&gt;[Score],&lt;BR /&gt;FILTER(&lt;BR /&gt;'Table',&lt;BR /&gt;'Table'[Sort] &amp;lt; CurrentSort &amp;amp;&amp;amp;&lt;BR /&gt;'Table'[Rule] = CurrentRule &amp;amp;&amp;amp;&lt;BR /&gt;NOT(ISBLANK([Score]))&lt;BR /&gt;),&lt;BR /&gt;LASTNONBLANK('Table'[Sort], [Score])&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a measure to compare the current score with the previous score and display the appropriate icon:&lt;/P&gt;
&lt;P&gt;Score Comparison Icon = &lt;BR /&gt;VAR CurrentScore = [Score]&lt;BR /&gt;VAR PrevScore = [Previous Score]&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;ISBLANK(CurrentScore),&lt;BR /&gt;"-",&lt;BR /&gt;SWITCH(&lt;BR /&gt;TRUE(),&lt;BR /&gt;ISBLANK(PrevScore), "-",&lt;BR /&gt;CurrentScore &amp;gt; PrevScore, "↑",&lt;BR /&gt;CurrentScore &amp;lt; PrevScore, "↓",&lt;BR /&gt;"→"&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;</description>
    <pubDate>Thu, 17 Oct 2024 09:30:55 GMT</pubDate>
    <dc:creator>bhanu_gautam</dc:creator>
    <dc:date>2024-10-17T09:30:55Z</dc:date>
    <item>
      <title>show icons based on previous value of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/show-icons-based-on-previous-value-of-measure/m-p/4246076#M168103</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;As you can see in the attached image my data is having rules, monday date representing the week ( for eg:- Week of 14-Oct) and score, i need to show the icons comparing current score with previous score but there are some weeks when rules are not executed for those weeks i need to show "-", now the case when previous value is "-" then compare current value with previous non hyphen "-" value.&lt;BR /&gt;Note -&lt;/P&gt;&lt;P&gt;1) score is the measure and it is calculated as (total records - bad records) *100/ total records&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) you can use the sort column to sort the Week Monday&lt;BR /&gt;&lt;BR /&gt;data-&lt;/P&gt;&lt;TABLE border="0" cellspacing="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;Rule&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;Week Monday&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;Total Records&lt;/TD&gt;&lt;TD&gt;Bad Records&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;Sort&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;A&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;Week of 30-Sep&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;1&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;B&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;Week of 30-Sep&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;90&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;1&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;C&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;Week of 30-Sep&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;80&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;1&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;A&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;Week of 07-Oct&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;2&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;B&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;Week of 07-Oct&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;2&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;C&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;Week of 07-Oct&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;2&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;A&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;Week of 14-Oct&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;90&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;3&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;B&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;Week of 14-Oct&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;70&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;3&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;C&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;Week of 14-Oct&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;200&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;3&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;A&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;Week of 23-Sep&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;300&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;0&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;B&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;Week of 23-Sep&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;30&lt;/TD&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;0&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;C&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;Week of 23-Sep&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;400&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;&lt;FONT face="Liberation Serif"&gt;0&lt;/FONT&gt;&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2024 07:35:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/show-icons-based-on-previous-value-of-measure/m-p/4246076#M168103</guid>
      <dc:creator>rautaniket0077</dc:creator>
      <dc:date>2024-10-17T07:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: show icons based on previous value of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/show-icons-based-on-previous-value-of-measure/m-p/4246147#M168106</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="471456" data-lia-user-login="rautaniket0077" class="lia-mention lia-mention-user"&gt;rautaniket0077&lt;/a&gt;&amp;nbsp;, Try using below measures&amp;nbsp;&lt;/P&gt;
&lt;DIV class=""&gt;
&lt;P&gt;Create a measure to get the previous score, skipping any weeks where the score is not available:&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV class=""&gt;
&lt;DIV class="" tabindex="-1" role="region" data-notebook-cell="true" data-testid="notebook-cell-container" aria-label="Cell 0"&gt;
&lt;DIV class=""&gt;
&lt;DIV data-testid="assistant-panel-code-block"&gt;
&lt;DIV class="" data-testid="notebook-cell-toolbar"&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;Previous Score =&lt;BR /&gt;VAR CurrentWeek = MAX('Table'[Sort])&lt;BR /&gt;VAR PreviousWeek =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;MAX('Table'[Sort]),&lt;BR /&gt;FILTER(&lt;BR /&gt;'Table',&lt;BR /&gt;'Table'[Sort] &amp;lt; CurrentWeek &amp;amp;&amp;amp; NOT(ISBLANK('Table'[Score]))&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;CALCULATE(&lt;BR /&gt;MAX('Table'[Score]),&lt;BR /&gt;FILTER(&lt;BR /&gt;'Table',&lt;BR /&gt;'Table'[Sort] = PreviousWeek&lt;BR /&gt;)&lt;BR /&gt;)
&lt;DIV class=""&gt;&amp;nbsp;
&lt;DIV class=""&gt;&amp;nbsp;
&lt;DIV class=""&gt;
&lt;P&gt;Create a measure to compare the current score with the previous score and display the appropriate icon:&lt;/P&gt;
&lt;P&gt;Score Icon =&lt;BR /&gt;VAR CurrentScore = MAX('Table'[Score])&lt;BR /&gt;VAR PrevScore = [Previous Score]&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;ISBLANK(CurrentScore),&lt;BR /&gt;"-",&lt;BR /&gt;SWITCH(&lt;BR /&gt;TRUE(),&lt;BR /&gt;ISBLANK(PrevScore), "-",&lt;BR /&gt;CurrentScore &amp;gt; PrevScore, "&lt;span class="lia-unicode-emoji" title=":upwards_button:"&gt;🔼&lt;/span&gt;", // Up arrow icon&lt;BR /&gt;CurrentScore &amp;lt; PrevScore, "&lt;span class="lia-unicode-emoji" title=":downwards_button:"&gt;🔽&lt;/span&gt;", // Down arrow icon&lt;BR /&gt;"&lt;span class="lia-unicode-emoji" title=":heavy_minus_sign:"&gt;➖&lt;/span&gt;" // Dash icon for no change&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add a table or matrix visual to your report and include the Week Monday, Rule, Score, and Score Icon columns/measures.&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2024 08:04:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/show-icons-based-on-previous-value-of-measure/m-p/4246147#M168106</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2024-10-17T08:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: show icons based on previous value of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/show-icons-based-on-previous-value-of-measure/m-p/4246226#M168108</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thank you for the reply, here the score is not column its a measure and when i am trying to calculate the previous score its giving me the blank and one more thing i need to show the data for the last 7 weeks only so one date filter is applied on this matrix vasual.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2024 08:51:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/show-icons-based-on-previous-value-of-measure/m-p/4246226#M168108</guid>
      <dc:creator>rautaniket0077</dc:creator>
      <dc:date>2024-10-17T08:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: show icons based on previous value of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/show-icons-based-on-previous-value-of-measure/m-p/4246305#M168111</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="471456" data-lia-user-login="rautaniket0077" class="lia-mention lia-mention-user"&gt;rautaniket0077&lt;/a&gt;&amp;nbsp;, Try updated one to handle blanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a measure to compute the score:&lt;/P&gt;
&lt;P&gt;Score = &lt;BR /&gt;IF(&lt;BR /&gt;ISBLANK(SUM('Table'[Total Records])) || ISBLANK(SUM('Table'[Bad Records])),&lt;BR /&gt;BLANK(),&lt;BR /&gt;(SUM('Table'[Total Records]) - SUM('Table'[Bad Records])) * 100 / SUM('Table'[Total Records])&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a measure to get the previous non-hyphen score:&lt;/P&gt;
&lt;P&gt;Previous Score = &lt;BR /&gt;VAR CurrentSort = MAX('Table'[Sort])&lt;BR /&gt;VAR CurrentRule = MAX('Table'[Rule])&lt;BR /&gt;RETURN&lt;BR /&gt;CALCULATE(&lt;BR /&gt;[Score],&lt;BR /&gt;FILTER(&lt;BR /&gt;'Table',&lt;BR /&gt;'Table'[Sort] &amp;lt; CurrentSort &amp;amp;&amp;amp;&lt;BR /&gt;'Table'[Rule] = CurrentRule &amp;amp;&amp;amp;&lt;BR /&gt;NOT(ISBLANK([Score]))&lt;BR /&gt;),&lt;BR /&gt;LASTNONBLANK('Table'[Sort], [Score])&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a measure to compare the current score with the previous score and display the appropriate icon:&lt;/P&gt;
&lt;P&gt;Score Comparison Icon = &lt;BR /&gt;VAR CurrentScore = [Score]&lt;BR /&gt;VAR PrevScore = [Previous Score]&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;ISBLANK(CurrentScore),&lt;BR /&gt;"-",&lt;BR /&gt;SWITCH(&lt;BR /&gt;TRUE(),&lt;BR /&gt;ISBLANK(PrevScore), "-",&lt;BR /&gt;CurrentScore &amp;gt; PrevScore, "↑",&lt;BR /&gt;CurrentScore &amp;lt; PrevScore, "↓",&lt;BR /&gt;"→"&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2024 09:30:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/show-icons-based-on-previous-value-of-measure/m-p/4246305#M168111</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2024-10-17T09:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: show icons based on previous value of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/show-icons-based-on-previous-value-of-measure/m-p/4246351#M168112</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;so sort (and Week of 14-Oct) is coming from date table and rules are from separate table. Apart from this there is no blanks in data but since i need to show&amp;nbsp; last 7 weeks if particular rule is not executed in that week then i need to show that week as well with "-".&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2024 09:54:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/show-icons-based-on-previous-value-of-measure/m-p/4246351#M168112</guid>
      <dc:creator>rautaniket0077</dc:creator>
      <dc:date>2024-10-17T09:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: show icons based on previous value of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/show-icons-based-on-previous-value-of-measure/m-p/4247461#M168168</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="100342" data-lia-user-login="lbendlin" class="lia-mention lia-mention-user"&gt;lbendlin&lt;/a&gt;&amp;nbsp;, &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;, &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;&amp;nbsp;please help me here.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2024 02:28:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/show-icons-based-on-previous-value-of-measure/m-p/4247461#M168168</guid>
      <dc:creator>rautaniket0077</dc:creator>
      <dc:date>2024-10-18T02:28:17Z</dc:date>
    </item>
  </channel>
</rss>

