<?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: Multiple answers and using other in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-answers-and-using-other/m-p/4272954#M169503</link>
    <description>&lt;P&gt;I will give this a try, how can we show these options on table like saying&amp;nbsp;&lt;/P&gt;&lt;P&gt;Others is blah blah blah...&lt;/P&gt;</description>
    <pubDate>Wed, 06 Nov 2024 19:30:53 GMT</pubDate>
    <dc:creator>Hjameelaq</dc:creator>
    <dc:date>2024-11-06T19:30:53Z</dc:date>
    <item>
      <title>Multiple answers and using other</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-answers-and-using-other/m-p/4272833#M169495</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;I have a multiple answer question and I want to make a bar visual which is something I know how to do. What I want is to show only options that have 3% higher and show other option instead of these options that are below 3% and show a small hint underneath thus bar saying other options include 1, 3 blah blah... can you please help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards, Hanna&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 17:26:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-answers-and-using-other/m-p/4272833#M169495</guid>
      <dc:creator>Hjameelaq</dc:creator>
      <dc:date>2024-11-06T17:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple answers and using other</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-answers-and-using-other/m-p/4272887#M169497</link>
      <description>&lt;P&gt;hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="839405" data-lia-user-login="Hjameelaq" class="lia-mention lia-mention-user"&gt;Hjameelaq&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;supposing you have two columns: answer and percentage&lt;SPAN&gt;, try to plot the barchart with two calculated columns:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;answer2 =&lt;/P&gt;
&lt;P&gt;IF([percentage]&amp;gt;=0.03, [answer], "Others")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Percentage2 =&lt;/P&gt;
&lt;P&gt;IF(&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; [answer]=[answer2],&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; [percentage],&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; SUMX(&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FILTER(data, data[answer2]="Others"),&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; data(percentage)&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; )&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 18:30:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-answers-and-using-other/m-p/4272887#M169497</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2024-11-06T18:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple answers and using other</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-answers-and-using-other/m-p/4272954#M169503</link>
      <description>&lt;P&gt;I will give this a try, how can we show these options on table like saying&amp;nbsp;&lt;/P&gt;&lt;P&gt;Others is blah blah blah...&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 19:30:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-answers-and-using-other/m-p/4272954#M169503</guid>
      <dc:creator>Hjameelaq</dc:creator>
      <dc:date>2024-11-06T19:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple answers and using other</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-answers-and-using-other/m-p/4273686#M169539</link>
      <description>&lt;P&gt;How do we calculate the sum of all values for a column to be able to calcuate the % for each ?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 09:02:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-answers-and-using-other/m-p/4273686#M169539</guid>
      <dc:creator>Hjameelaq</dc:creator>
      <dc:date>2024-11-07T09:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple answers and using other</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-answers-and-using-other/m-p/4273786#M169548</link>
      <description>&lt;P&gt;hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="839405" data-lia-user-login="Hjameelaq" class="lia-mention lia-mention-user"&gt;Hjameelaq&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;try to write a calculated column like:&lt;/P&gt;
&lt;P&gt;Column =&lt;/P&gt;
&lt;P&gt;DIVIDE(&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; data[value],&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; SUM(data[value])&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 09:55:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-answers-and-using-other/m-p/4273786#M169548</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2024-11-07T09:55:55Z</dc:date>
    </item>
  </channel>
</rss>

