<?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: Do custom data labels work with small multiples? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Do-custom-data-labels-work-with-small-multiples/m-p/3516969#M135034</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , Change the display unit to none and check. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But there are some issues with this in the latest version of Power BI Desktop.&lt;/P&gt;
&lt;P&gt;Check any issue already reported - &lt;A href="https://community.powerbi.com/t5/Issues/idb-p/Issues" target="_blank"&gt;https://community.powerbi.com/t5/Issues/idb-p/Issues&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 06 Nov 2023 04:42:34 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2023-11-06T04:42:34Z</dc:date>
    <item>
      <title>Do custom data labels work with small multiples?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Do-custom-data-labels-work-with-small-multiples/m-p/3516765#M135022</link>
      <description>&lt;P&gt;I created a bar chart and I want to show custom data labels for the sum and count of a column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The first screenshot here shows the default data labels&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The second screenshot here shows that the labels disappear when i enable the custom labels.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Below is the DAX for my custome label&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;! CD bar label2 =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;_amount&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'table'&lt;/SPAN&gt;&lt;SPAN&gt;[value]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;_cases&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;COUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'table'&lt;/SPAN&gt;&lt;SPAN&gt;[value]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"Amt: "&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;FORMAT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;_amount&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"$#,,.0M"&lt;/SPAN&gt;&lt;SPAN&gt;) &amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;" | Cases: "&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;_cases&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;EDIT 1&lt;/STRONG&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;For my bar chart, &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;y-axis: text column with 3 unique values&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;x-axis: sum of a value&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;legend:&amp;nbsp;text column with 2 unique values&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;small multiples:&amp;nbsp;text column with 2 unique values&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Do custom labels not work with small multiples or did i do something wrong?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 06 Nov 2023 01:54:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Do-custom-data-labels-work-with-small-multiples/m-p/3516765#M135022</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-11-06T01:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: Do custom data labels work with small multiples?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Do-custom-data-labels-work-with-small-multiples/m-p/3516969#M135034</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , Change the display unit to none and check. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But there are some issues with this in the latest version of Power BI Desktop.&lt;/P&gt;
&lt;P&gt;Check any issue already reported - &lt;A href="https://community.powerbi.com/t5/Issues/idb-p/Issues" target="_blank"&gt;https://community.powerbi.com/t5/Issues/idb-p/Issues&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 04:42:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Do-custom-data-labels-work-with-small-multiples/m-p/3516969#M135034</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2023-11-06T04:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: Do custom data labels work with small multiples?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Do-custom-data-labels-work-with-small-multiples/m-p/3517006#M135036</link>
      <description>&lt;P&gt;doesnt seem to work&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 05:22:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Do-custom-data-labels-work-with-small-multiples/m-p/3517006#M135036</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-11-06T05:22:32Z</dc:date>
    </item>
  </channel>
</rss>

