<?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: Freeze value in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Freeze-value/m-p/2951654#M97892</link>
    <description>&lt;P&gt;could you please provide some sample data and ideally with the expected result?&lt;/P&gt;</description>
    <pubDate>Tue, 06 Dec 2022 14:05:17 GMT</pubDate>
    <dc:creator>FreemanZ</dc:creator>
    <dc:date>2022-12-06T14:05:17Z</dc:date>
    <item>
      <title>Freeze value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Freeze-value/m-p/2951249#M97838</link>
      <description>&lt;P&gt;Hi Team,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have two tables&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dimension country column and business type column&lt;/P&gt;&lt;P&gt;Fact table country column, Sales amount and business type&lt;/P&gt;&lt;P&gt;I have given relationship from dim country column to fact country column.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using business type in slicer&lt;/P&gt;&lt;P&gt;My issue is if&amp;nbsp; I select anything in business type it should show total of sales amount.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have used "ALL" Dax function but when I select something in slicer data is filtering. I can't use edit interactions.&lt;/P&gt;&lt;P&gt;What ever we select in slicer it should show total .Data should not change.&lt;/P&gt;&lt;P&gt;I can't remove relationship because it will effect other columns.&lt;/P&gt;&lt;P&gt;Could you please suggest me.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 11:19:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Freeze-value/m-p/2951249#M97838</guid>
      <dc:creator>Balhemkan</dc:creator>
      <dc:date>2022-12-06T11:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: Freeze value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Freeze-value/m-p/2951314#M97849</link>
      <description>&lt;P&gt;try not using the SalesAmount column but a measure with such code:&lt;/P&gt;&lt;P&gt;AllAmount :=&lt;/P&gt;&lt;P&gt;CALCULATE(&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; SUM(TableName[SalesAmount]),&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; ALL()&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 11:50:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Freeze-value/m-p/2951314#M97849</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2022-12-06T11:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: Freeze value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Freeze-value/m-p/2951376#M97859</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="460868" data-lia-user-login="FreemanZ" class="lia-mention lia-mention-user"&gt;FreemanZ&lt;/a&gt;&amp;nbsp; - I tried this but not working. Actually my issue is. ...&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Dim Business type we have values like A B C&lt;/P&gt;&lt;P&gt;In fact business type we have values like A&amp;nbsp; B C&lt;/P&gt;&lt;P&gt;When ever we select A&amp;nbsp; Or B it should show total of A B C.&amp;nbsp;&lt;/P&gt;&lt;P&gt;When ever we select C we should get only C total.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now when we select A it showing only A total instead of A B C. Please help me i stuck with these from two days&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 12:36:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Freeze-value/m-p/2951376#M97859</guid>
      <dc:creator>Balhemkan</dc:creator>
      <dc:date>2022-12-06T12:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Freeze value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Freeze-value/m-p/2951654#M97892</link>
      <description>&lt;P&gt;could you please provide some sample data and ideally with the expected result?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 14:05:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Freeze-value/m-p/2951654#M97892</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2022-12-06T14:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Freeze value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Freeze-value/m-p/2952202#M97940</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="460868" data-lia-user-login="FreemanZ" class="lia-mention lia-mention-user"&gt;FreemanZ&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please find the below link for sample data and detailed requirement.&amp;nbsp;&lt;A title="Sample pbix" href="https://drive.google.com/file/d/1IAc5Ux2R_0QbfBe_6EG2JlI_4nGtHRgv/view?usp=drivesdk" target="_self"&gt;https://drive.google.com/file/d/1IAc5Ux2R_0QbfBe_6EG2JlI_4nGtHRgv/view?usp=drivesdk&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 18:18:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Freeze-value/m-p/2952202#M97940</guid>
      <dc:creator>Balhemkan</dc:creator>
      <dc:date>2022-12-06T18:18:19Z</dc:date>
    </item>
  </channel>
</rss>

