<?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 apply visual level filter(uning dax measure) to dax meaure result. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-apply-visual-level-filter-uning-dax-measure-to-dax-meaure/m-p/921465#M9105</link>
    <description>I am not sure but try this one&lt;BR /&gt;&lt;BR /&gt;If([rate%]&amp;gt;0.05,[rate%],blank())&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Pravin&lt;BR /&gt;</description>
    <pubDate>Tue, 04 Feb 2020 17:27:39 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-02-04T17:27:39Z</dc:date>
    <item>
      <title>How to apply visual level filter(uning dax measure) to dax meaure result.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-apply-visual-level-filter-uning-dax-measure-to-dax-meaure/m-p/921374#M9100</link>
      <description>&lt;P&gt;"Rate %" is a dax measure=&lt;SPAN&gt;DIVIDE(a,b,c)&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;I want to be able to filter to show only the result that is greater than or equal to 5%&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I could simply achieve this by using "Visual Level Filter" as shown bellow;&lt;BR /&gt;&lt;img /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;And the above works. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But I am wondering if there's a way I can achieve thesame using only measure. As I am wanting to make it dynamic.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;For Example:&lt;BR /&gt;If&amp;nbsp;&lt;SPAN&gt;Rate %&lt;/SPAN&gt; was a Table Column and not a Measure, I would have written the dax like the following;&lt;/P&gt;&lt;P&gt;Measure = Calculate(&lt;SPAN&gt;DIVIDE(a,b,c)&lt;/SPAN&gt;, Filter(table, Column &amp;gt;= 0.05)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The question is how do I achieve thesame when it's a dax and not a table column?&lt;BR /&gt;&lt;SPAN&gt;Measure = Calculate(&lt;/SPAN&gt;&lt;SPAN&gt;DIVIDE(a,b,c)&lt;/SPAN&gt;&lt;SPAN&gt;, Filter(Rate % &amp;gt;= 0.05) - This does not work lol.&lt;BR /&gt;Please help, thanks in advance.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2020 15:26:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-apply-visual-level-filter-uning-dax-measure-to-dax-meaure/m-p/921374#M9100</guid>
      <dc:creator>Eli_</dc:creator>
      <dc:date>2020-02-04T15:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to apply visual level filter(uning dax measure) to dax meaure result.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-apply-visual-level-filter-uning-dax-measure-to-dax-meaure/m-p/921465#M9105</link>
      <description>I am not sure but try this one&lt;BR /&gt;&lt;BR /&gt;If([rate%]&amp;gt;0.05,[rate%],blank())&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Pravin&lt;BR /&gt;</description>
      <pubDate>Tue, 04 Feb 2020 17:27:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-apply-visual-level-filter-uning-dax-measure-to-dax-meaure/m-p/921465#M9105</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-04T17:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to apply visual level filter(uning dax measure) to dax meaure result.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-apply-visual-level-filter-uning-dax-measure-to-dax-meaure/m-p/921483#M9107</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;Oh wow, It worked.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I did not think it would work, because I had tired doing&lt;BR /&gt;Measure = Calculate(Rate %, &lt;SPAN&gt;&lt;STRONG&gt;If([Rate %]&amp;gt;0.05,[Rate %], Blank())&lt;/STRONG&gt;)&lt;BR /&gt;And I got an error message, Calcuate used in True/False expression..This is not allowed.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":rolling_on_the_floor_laughing:"&gt;🤣&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Your Solution tha uses only the &lt;STRONG&gt;If statement&lt;/STRONG&gt;&lt;SPAN&gt; Worked!&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Thank You!!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2020 17:41:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-apply-visual-level-filter-uning-dax-measure-to-dax-meaure/m-p/921483#M9107</guid>
      <dc:creator>Eli_</dc:creator>
      <dc:date>2020-02-04T17:41:35Z</dc:date>
    </item>
  </channel>
</rss>

