<?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: Dynamic number format in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4032502#M159558</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="653509" data-lia-user-login="AhmadBakr" class="lia-mention lia-mention-user"&gt;AhmadBakr&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good question &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If a format string depends on a measure's value (as it does in your example), then I don't believe it's possible to assign the format string expression to a separate measure and then reference this measure within format string expressions of individual measures.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The function &lt;STRONG&gt;SELECTEDMEASURE()&lt;/STRONG&gt; can be used to generically evaluate the "current" measure, but it only works when used directly in a format string expression, not in a measure referenced by a format string expression.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So the options I can suggest for applying this same format string to multiple measures are:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN&gt;In your above expression, change &lt;/SPAN&gt;&lt;STRONG style="font-family: inherit;"&gt;[Amt]&lt;/STRONG&gt;&lt;SPAN&gt; to &lt;/SPAN&gt;&lt;STRONG style="font-family: inherit;"&gt;SELECTEDMEASURE() &lt;/STRONG&gt;, and replicate the dynamic format string code for every measure. This can be done relatively quickly with Tabular Editor (by selecting multiple measures and changing the dynamic format string expression property).&lt;/LI&gt;
&lt;LI&gt;Rather than using measure dynamic format strings, instead create a calculation group containing a calculation item with the appropriate format string expression using &lt;STRONG&gt;SELECTEDMEASURE()&lt;/STRONG&gt;. This calculation item could then be applied as a filter to control the formatting of any number of measures at visual/page/report level.&lt;BR /&gt;See &lt;A href="https://www.sqlbi.com/articles/controlling-format-strings-in-calculation-groups/" target="_blank" rel="noopener"&gt;this article&lt;/A&gt; for example.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Hopefully that is of some help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 09 Jul 2024 12:13:02 GMT</pubDate>
    <dc:creator>OwenAuger</dc:creator>
    <dc:date>2024-07-09T12:13:02Z</dc:date>
    <item>
      <title>Dynamic number format</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4028571#M159170</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a measure [PO_Amount] which migh show wide range of numbers from thousands to billions. I chose dynamic format for it and entered the below in the "Format" formula bar:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;FONT size="2" color="#0000FF"&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;kil&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;10&lt;/SPAN&gt;&lt;SPAN&gt;^&lt;/SPAN&gt;&lt;SPAN&gt;3&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2" color="#0000FF"&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;mil&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;10&lt;/SPAN&gt;&lt;SPAN&gt;^&lt;/SPAN&gt;&lt;SPAN&gt;6&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2" color="#0000FF"&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;bil&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;10&lt;/SPAN&gt;&lt;SPAN&gt;^&lt;/SPAN&gt;&lt;SPAN&gt;9&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2" color="#0000FF"&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2" color="#0000FF"&gt;&lt;SPAN&gt;SWITCH&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2" color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;TRUE&lt;/SPAN&gt;&lt;SPAN&gt;(),&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2" color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[PO_Amount]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;gt;= &lt;/SPAN&gt;&lt;SPAN&gt;bil&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;FORMAT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[PO_Amount]&lt;/SPAN&gt;&lt;SPAN&gt;/&lt;/SPAN&gt;&lt;SPAN&gt;bil&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"0.00B"&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2" color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[PO_Amount]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;gt;= &lt;/SPAN&gt;&lt;SPAN&gt;mil&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;FORMAT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[PO_Amount]&lt;/SPAN&gt;&lt;SPAN&gt;/&lt;/SPAN&gt;&lt;SPAN&gt;mil&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"0.00M"&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2" color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[PO_Amount]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;gt;= &lt;/SPAN&gt;&lt;SPAN&gt;kil&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;FORMAT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[PO_Amount]&lt;/SPAN&gt;&lt;SPAN&gt;/&lt;/SPAN&gt;&lt;SPAN&gt;kil&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"0.00K&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2" color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;FORMAT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[PO_Amount]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"0.00"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;FONT size="2" color="#0000FF"&gt;)&lt;/FONT&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;To my surprize, it does not show the decimal point at all, e.g. if the value is 1,123,456,789 and should show as 1.12B, it appears 112B&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 07 Jul 2024 09:40:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4028571#M159170</guid>
      <dc:creator>AhmadBakr</dc:creator>
      <dc:date>2024-07-07T09:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic number format</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4028648#M159181</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="653509" data-lia-user-login="AhmadBakr" class="lia-mention lia-mention-user"&gt;AhmadBakr&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The dynamic format string expression should be written to return a format string, rather than returning the formatted value itself.&lt;/P&gt;
&lt;P&gt;For example, the format string expression should return values such as these to format billions, millions or thousands:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;"0,,,.00B"

"0,,.00M"

"0,.00K"&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a suggested rewritten version of the format string expression:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;VAR kil = 10^3
VAR mil = 10^6
VAR bil = 10^9
VAR amount = [PO_Amount]
RETURN
    SWITCH(
        TRUE(),
        amount &amp;gt;= bil, "0,,,.00B",
        amount &amp;gt;= mil, "0,,.00M",
        amount &amp;gt;= kil, "0,.00K",
        "0.00"
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could add &lt;STRONG&gt;"#,"&lt;/STRONG&gt; to the start of each string for digit grouping:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;VAR kil = 10^3
VAR mil = 10^6
VAR bil = 10^9
VAR amount = [PO_Amount]
RETURN
    SWITCH(
        TRUE(),
        amount &amp;gt;= bil, "#,0,,,.00B",
        amount &amp;gt;= mil, "#,0,,.00M",
        amount &amp;gt;= kil, "#,0,.00K",
        "#,0.00"
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does the above work for you?&lt;/P&gt;</description>
      <pubDate>Sun, 07 Jul 2024 11:45:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4028648#M159181</guid>
      <dc:creator>OwenAuger</dc:creator>
      <dc:date>2024-07-07T11:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic number format</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4032116#M159481</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="6799" data-lia-user-login="OwenAuger" class="lia-mention lia-mention-user"&gt;OwenAuger&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response.&lt;/P&gt;&lt;P&gt;In fact I tried something similar and did not work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried the code you suggested and for a value 17.46bn (as auto formatted), it returned 0.00bnB (!)&lt;BR /&gt;I am not sure what might be missing.&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>Tue, 09 Jul 2024 08:40:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4032116#M159481</guid>
      <dc:creator>AhmadBakr</dc:creator>
      <dc:date>2024-07-09T08:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic number format</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4032268#M159498</link>
      <description>&lt;P&gt;Ah right, with the Card visual (and certain other situations) make sure the visual's number format settings are not conflicting with the measure's number format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For a Card, set&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Callout value &amp;gt; Display units = None&lt;/LI&gt;
&lt;LI&gt;Callout value &amp;gt; Value decimal places = Auto&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Does that fix it?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2024 09:43:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4032268#M159498</guid>
      <dc:creator>OwenAuger</dc:creator>
      <dc:date>2024-07-09T09:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic number format</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4032322#M159503</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="6799" data-lia-user-login="OwenAuger" class="lia-mention lia-mention-user"&gt;OwenAuger&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot, this solved it. I was tuning all these (code plus format) but your code together with the right format setting did the job.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Much appreciated, you save me double the number of measures to write a dedicated format measure for every numerical measure &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2024 10:01:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4032322#M159503</guid>
      <dc:creator>AhmadBakr</dc:creator>
      <dc:date>2024-07-09T10:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic number format</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4032393#M159524</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="6799" data-lia-user-login="OwenAuger" class="lia-mention lia-mention-user"&gt;OwenAuger&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to reference a generic measure name, so I can assign the dynamic format code to a measure and use this measure name in the dynamic format string of any measure without the need to change the name of the measure to be formatted (highlighted red below)?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;VAR kil = 10^3&lt;BR /&gt;VAR mil = 10^6&lt;BR /&gt;VAR bil = 10^9&lt;BR /&gt;VAR &lt;FONT color="#00CCFF"&gt;input &lt;/FONT&gt;= &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;[Amt]&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;RETURN&lt;BR /&gt;SWITCH(&lt;BR /&gt;TRUE(),&lt;BR /&gt;&lt;FONT color="#00CCFF"&gt;input &lt;/FONT&gt;&amp;gt;= bil, "#,0,,,.00B",&lt;BR /&gt;&lt;FONT color="#00CCFF"&gt;input &lt;/FONT&gt;&amp;gt;= mil, "#,0,,.00M",&lt;BR /&gt;&lt;FONT color="#00CCFF"&gt;input &lt;/FONT&gt;&amp;gt;= kil, "#,0,.00K",&lt;BR /&gt;"#,0.00"&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2024 10:48:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4032393#M159524</guid>
      <dc:creator>AhmadBakr</dc:creator>
      <dc:date>2024-07-09T10:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic number format</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4032502#M159558</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="653509" data-lia-user-login="AhmadBakr" class="lia-mention lia-mention-user"&gt;AhmadBakr&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good question &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If a format string depends on a measure's value (as it does in your example), then I don't believe it's possible to assign the format string expression to a separate measure and then reference this measure within format string expressions of individual measures.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The function &lt;STRONG&gt;SELECTEDMEASURE()&lt;/STRONG&gt; can be used to generically evaluate the "current" measure, but it only works when used directly in a format string expression, not in a measure referenced by a format string expression.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So the options I can suggest for applying this same format string to multiple measures are:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN&gt;In your above expression, change &lt;/SPAN&gt;&lt;STRONG style="font-family: inherit;"&gt;[Amt]&lt;/STRONG&gt;&lt;SPAN&gt; to &lt;/SPAN&gt;&lt;STRONG style="font-family: inherit;"&gt;SELECTEDMEASURE() &lt;/STRONG&gt;, and replicate the dynamic format string code for every measure. This can be done relatively quickly with Tabular Editor (by selecting multiple measures and changing the dynamic format string expression property).&lt;/LI&gt;
&lt;LI&gt;Rather than using measure dynamic format strings, instead create a calculation group containing a calculation item with the appropriate format string expression using &lt;STRONG&gt;SELECTEDMEASURE()&lt;/STRONG&gt;. This calculation item could then be applied as a filter to control the formatting of any number of measures at visual/page/report level.&lt;BR /&gt;See &lt;A href="https://www.sqlbi.com/articles/controlling-format-strings-in-calculation-groups/" target="_blank" rel="noopener"&gt;this article&lt;/A&gt; for example.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Hopefully that is of some help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2024 12:13:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4032502#M159558</guid>
      <dc:creator>OwenAuger</dc:creator>
      <dc:date>2024-07-09T12:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic number format</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4032668#M159588</link>
      <description>&lt;P&gt;The first solution appeals to me more and worked. you are right, when I assigned the format code to a separate measure and used it to format the Amt measure, didn't work, althought I tried (for the fun of it) to use VALUE() but no! May be later we can get some function like EXCEL's INDIRECT() &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And thank you for the article as well. This is super useful.&lt;BR /&gt;&lt;BR /&gt;Thanks a lot for your responses and support.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2024 13:56:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-number-format/m-p/4032668#M159588</guid>
      <dc:creator>AhmadBakr</dc:creator>
      <dc:date>2024-07-09T13:56:53Z</dc:date>
    </item>
  </channel>
</rss>

