<?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: How to show specific value in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2047647#M46009</link>
    <description>&lt;P&gt;you can add a IF function in your measures, such as&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;IF(SELECTEDVALUE(table[Branch]) IN {19,22,27},[old measure])&lt;/P&gt;</description>
    <pubDate>Tue, 31 Aug 2021 03:51:28 GMT</pubDate>
    <dc:creator>wdx223_Daniel</dc:creator>
    <dc:date>2021-08-31T03:51:28Z</dc:date>
    <item>
      <title>How to show specific value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2038741#M45757</link>
      <description>&lt;P&gt;I would appericate it if someone can help me.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I create a DAX formula to only show specific value.&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, I would like to create a Dax formula to only show branch 19, 22, 27 and exclude the rest of the branch. I do not want to use the exclude using the filter.&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>Wed, 25 Aug 2021 21:08:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2038741#M45757</guid>
      <dc:creator>noble10</dc:creator>
      <dc:date>2021-08-25T21:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to show specific value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2039025#M45762</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="322207" data-lia-user-login="noble10" class="lia-mention lia-mention-user"&gt;noble10&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please try this measure:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Filtered Branch = 
CALCULATE (
    FIRSTNONBLANK ( 'Table'[Location Name], "" ),
    FILTER ( 'Table', 'Table'[Branch] IN { 19, 22, 27 } )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the output will be as below:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution!&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Appreciate your Kudos&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;img /&gt;&amp;nbsp;&lt;STRONG&gt;!!&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 01:31:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2039025#M45762</guid>
      <dc:creator>VahidDM</dc:creator>
      <dc:date>2021-08-26T01:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to show specific value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2041040#M45822</link>
      <description>&lt;P&gt;Hi VahidDM,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your help! I unfortunately was not able to select the measure as a slicer. Not sure why?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 17:12:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2041040#M45822</guid>
      <dc:creator>noble10</dc:creator>
      <dc:date>2021-08-26T17:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to show specific value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2041588#M45848</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="322207" data-lia-user-login="noble10" class="lia-mention lia-mention-user"&gt;noble10&lt;/a&gt;&lt;/P&gt;&lt;P&gt;Try to add a column with this code to your table:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;IF you want to have Branch No. in your slicer:&lt;/P&gt;&lt;P&gt;Filtered Branch = if('Table'[Branch] in{19,22,21},'Table'[Branch])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to have a Location Name in your slicer:&lt;/P&gt;&lt;P&gt;Filtered Branch = if('Table'[Branch] in{19,22,21},'Table'[Location Name])&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then add Filtered Branch column to your slicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution!&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Appreciate your Kudos&amp;nbsp;&lt;img /&gt;&amp;nbsp;&lt;STRONG&gt;!!&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Aug 2021 00:07:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2041588#M45848</guid>
      <dc:creator>VahidDM</dc:creator>
      <dc:date>2021-08-27T00:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to show specific value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2046659#M45989</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="315278" data-lia-user-login="VahidDM" class="lia-mention lia-mention-user"&gt;VahidDM&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried the instruction above but it dosen't seem to work.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Aug 2021 16:11:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2046659#M45989</guid>
      <dc:creator>noble10</dc:creator>
      <dc:date>2021-08-30T16:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to show specific value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2047301#M45996</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="322207" data-lia-user-login="noble10" class="lia-mention lia-mention-user"&gt;noble10&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please share a screenshot from the error you ean into here? or share the sample of your PBIX (power bi) file here to be able to work on it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Appreciate your Kudos&amp;nbsp;&lt;/STRONG&gt;&lt;img /&gt;&lt;STRONG&gt;&amp;nbsp;!!&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Aug 2021 23:51:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2047301#M45996</guid>
      <dc:creator>VahidDM</dc:creator>
      <dc:date>2021-08-30T23:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to show specific value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2047647#M46009</link>
      <description>&lt;P&gt;you can add a IF function in your measures, such as&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;IF(SELECTEDVALUE(table[Branch]) IN {19,22,27},[old measure])&lt;/P&gt;</description>
      <pubDate>Tue, 31 Aug 2021 03:51:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2047647#M46009</guid>
      <dc:creator>wdx223_Daniel</dc:creator>
      <dc:date>2021-08-31T03:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to show specific value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2049289#M46058</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="315278" data-lia-user-login="VahidDM" class="lia-mention lia-mention-user"&gt;VahidDM&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I message you the link to the PBIX (power BI) file. Thank you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Aug 2021 15:36:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2049289#M46058</guid>
      <dc:creator>noble10</dc:creator>
      <dc:date>2021-08-31T15:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to show specific value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2049302#M46059</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="264353" data-lia-user-login="wdx223_Daniel" class="lia-mention lia-mention-user"&gt;wdx223_Daniel&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried that and it doesn't seem to work either.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was unable to generate a slicer after creating the measure.&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;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Aug 2021 15:40:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-specific-value/m-p/2049302#M46059</guid>
      <dc:creator>noble10</dc:creator>
      <dc:date>2021-08-31T15:40:59Z</dc:date>
    </item>
  </channel>
</rss>

