<?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: Adding filters to a calculated column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4903325#M186471</link>
    <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1458820" data-lia-user-login="eem_2021" class="lia-mention lia-mention-user"&gt;eem_2021&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Alternative solution:&lt;/STRONG&gt; In addition to the marked answer, here’s another approach that works well when your profit values are stored as text and you want to filter out anything above 120.&lt;BR /&gt;&lt;BR /&gt;Calculated columns won’t respond to filters, you need a &lt;STRONG&gt;measure&lt;/STRONG&gt; instead. For example:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Profit ≤ 120 Total =
SUMX (
    FILTER (
        'Table',
        VALUE('Table'[Profit (Text)]) &amp;lt;= 120
    ),
    VALUE('Table'[Profit (Text)])
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In &lt;STRONG&gt;Power BI Desktop&lt;/STRONG&gt;, add this to a Card or Table visual. In &lt;STRONG&gt;Power BI Service&lt;/STRONG&gt;, use a slicer on Profit (Text) (set to &lt;EM&gt;≤ 120&lt;/EM&gt;) and add the measure to a Table visual.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;If you want the cutoff to be dynamic, create a small &lt;STRONG&gt;ThresholdTable&lt;/STRONG&gt; with values (50, 75, 100, 120, 150) and use it as a slicer. Update the measure with SELECTEDVALUE() so users can pick the threshold interactively.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here’s how it looks in Power BI Service,&amp;nbsp; using a slicer and table visual to filter and display totals:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 16 Dec 2025 18:08:33 GMT</pubDate>
    <dc:creator>Olufemi7</dc:creator>
    <dc:date>2025-12-16T18:08:33Z</dc:date>
    <item>
      <title>Adding filters to a calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4896402#M186343</link>
      <description>&lt;P&gt;Hello!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working on a project where my data&amp;nbsp; is being pulled as a text (I unforntunelty cant change this). I made some formulas in order to have it be converted to an integer but those appear as calculated columns, which does not allow me to add filters to. I want to find a way where I can filter out any value that is under "x" value. Any help would be awesome!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 22:49:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4896402#M186343</guid>
      <dc:creator>eem_2021</dc:creator>
      <dc:date>2025-12-08T22:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: Adding filters to a calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4896408#M186344</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1458820" data-lia-user-login="eem_2021" class="lia-mention lia-mention-user"&gt;eem_2021&lt;/a&gt;&amp;nbsp;Can you clarify your intent here? Are you saying that you want to convert it to an integer and then filter out any row where the value is &amp;lt; x value or are you saying that during the conversion you don't want to convert "numbers" less than x value and instead return something like null instead? Are you able to paste your Power Query or DAX code that you are using? Are these DAX calculated columns or Power Query columns or are they measures in a table and thus display as columns?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 23:00:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4896408#M186344</guid>
      <dc:creator>GeraldGEmerick</dc:creator>
      <dc:date>2025-12-08T23:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Adding filters to a calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4896409#M186345</link>
      <description>&lt;P&gt;Thank you for your reply. I created a visual where I have three columns for profit. The data set I'm using has profit as a text. I am using basic convert () function to make it an integer. However I want to be able to exclude any field that populates that is over 120. I'm running into the issue where I am not able to add filters to calculated columns&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 23:12:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4896409#M186345</guid>
      <dc:creator>eem_2021</dc:creator>
      <dc:date>2025-12-08T23:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Adding filters to a calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4896450#M186346</link>
      <description>&lt;P&gt;Because your Profit field comes in as text, the best approach is to convert it to a proper numeric column in Power Query, then filter out values above 120 directly in the report.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-&amp;nbsp;Convert the column's data type to Decimal Number in Power Query&lt;/P&gt;&lt;P&gt;- Apply the filter to your visual:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Select the visual (table, matrix, chart, etc.)&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Go to the Filters pane (on the right)&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Drag Profit column into Filters on this visual&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Set:&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Show items when the value&lt;BR /&gt;→ is less than or equal to&lt;BR /&gt;→ 120&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;This will automatically remove any rows where Profit &amp;gt; 120.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 02:06:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4896450#M186346</guid>
      <dc:creator>syahmisi98</dc:creator>
      <dc:date>2025-12-09T02:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: Adding filters to a calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4896491#M186349</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1458820" data-lia-user-login="eem_2021" class="lia-mention lia-mention-user"&gt;eem_2021&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use Visual Filter Panel to add filter:&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;Or add filter conditions on measure:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CALCULATE(
    ...,
    Table[Column]=xxxx
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did I answer your question? If yes, pls mark my post as a solution and appreciate your Kudos !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you~&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 03:27:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4896491#M186349</guid>
      <dc:creator>xifeng_L</dc:creator>
      <dc:date>2025-12-09T03:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: Adding filters to a calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4896751#M186355</link>
      <description>&lt;P&gt;To add filter to a calculated column you need to wrap a CALCULATE statement around its code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Column Filtered =&amp;nbsp;&lt;BR /&gt;CALCULATE (&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Original column DAX code,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Table[Column] &amp;gt; 120&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this helped, please consider giving kudos and mark as a solution&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="273" data-lia-user-login="me" class="lia-mention lia-mention-user"&gt;me&lt;/a&gt; in replies or I'll lose your thread&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Want to check your DAX skills? &lt;A href="https://www.linkedin.com/company/kubisco/" target="_blank"&gt;Answer my biweekly DAX challenges on the kubisco Linkedin page&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Consider voting &lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/Power-BI-Filter-Pane-as-an-icon-on-the-right-side-bar-in-on/idi-p/4728588" target="_blank"&gt;this Power BI idea&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Francesco Bergamaschi&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;MBA, M.Eng, M.Econ, Professor of BI&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 08:32:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4896751#M186355</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-12-09T08:32:50Z</dc:date>
    </item>
    <item>
      <title>Re: Adding filters to a calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4898682#M186389</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1458820" data-lia-user-login="eem_2021" class="lia-mention lia-mention-user"&gt;eem_2021&lt;/a&gt;&amp;nbsp;, if you are looking to pass a filter or slicer value to calculated columns, that is not possible. Calculated column are calculated at load time and will not consider report filter or slicer.&lt;BR /&gt;&lt;BR /&gt;You need create a measure , if that can serve the purpose . Measure by default takes filter and slicer values&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Dec 2025 14:49:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4898682#M186389</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2025-12-10T14:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: Adding filters to a calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4900411#M186425</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1458820" data-lia-user-login="eem_2021" class="lia-mention lia-mention-user"&gt;eem_2021&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to Microsoft Fabric Community.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287762" data-lia-user-login="FBergamaschi" class="lia-mention lia-mention-user"&gt;FBergamaschi&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="738384" data-lia-user-login="xifeng_L" class="lia-mention lia-mention-user"&gt;xifeng_L&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1355488" data-lia-user-login="syahmisi98" class="lia-mention lia-mention-user"&gt;syahmisi98&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1338394" data-lia-user-login="GeraldGEmerick" class="lia-mention lia-mention-user"&gt;GeraldGEmerick&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;for the prompt response.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I wanted to check if you had the opportunity to review the information provided and resolve the issue..?Please let us know if you need any further assistance.We are happy to help.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Dec 2025 07:20:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4900411#M186425</guid>
      <dc:creator>v-venuppu</dc:creator>
      <dc:date>2025-12-12T07:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: Adding filters to a calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4901903#M186449</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1458820" data-lia-user-login="eem_2021" class="lia-mention lia-mention-user"&gt;eem_2021&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue? Please let us know if you have any further issues, we are happy to help.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Dec 2025 08:00:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4901903#M186449</guid>
      <dc:creator>v-venuppu</dc:creator>
      <dc:date>2025-12-15T08:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: Adding filters to a calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4902670#M186462</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1458820" data-lia-user-login="eem_2021" class="lia-mention lia-mention-user"&gt;eem_2021&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to pass slicer or filter value to your visual or calculations, the you can use DAX functions SELECTEDVALUE,HASONEVALUE,FILTERS etc.&lt;/P&gt;&lt;P&gt;these will work with measures not calculated columns .but if you want specific condition rows you can create a measure with flag one or zero.something like below example:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Is Active in Period = 
VAR PeriodStart = MIN('Date'[Date])  // The start date from your slicer
VAR PeriodEnd   = MAX('Date'[Date])  // The end date from your slicer
VAR EmpStart    = SELECTEDVALUE('User Posting'[Start Date])
VAR EmpEnd      = SELECTEDVALUE('User Posting'[End Date])

RETURN
// Logic: An employee is active if they started before the period ended...
// ...AND (they are still active OR they left after the period started).
IF (
    EmpStart &amp;lt;= PeriodEnd &amp;amp;&amp;amp; 
    (ISBLANK(EmpEnd) || EmpEnd &amp;gt;= PeriodStart),
    1,
    0
)&lt;/LI-CODE&gt;&lt;P&gt;above measure will give me records empstart and empend is withing slicer selection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to work with calculated columns use string manipulation functions to create the desired columns/flags.&lt;/P&gt;&lt;P&gt;References:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Using-measure-as-a-filter/td-p/2996922" target="_self"&gt;https://community.fabric.microsoft.com/t5/Desktop/Using-measure-as-a-filter/td-p/2996922&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sqlbi.com/articles/applying-a-measure-filter-in-power-bi/" target="_self"&gt;https://www.sqlbi.com/articles/applying-a-measure-filter-in-power-bi/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dax/containsstring-function-dax" target="_self"&gt;https://learn.microsoft.com/en-us/dax/containsstring-function-dax&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dax/containsstringexact-function-dax" target="_self"&gt;https://learn.microsoft.com/en-us/dax/containsstringexact-function-dax&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dax/selectedvalue-function-dax" target="_self"&gt;https://learn.microsoft.com/en-us/dax/selectedvalue-function-dax&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please give kudos or mark it as solution once confirmed.&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Praful&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Dec 2025 03:58:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4902670#M186462</guid>
      <dc:creator>Praful_Potphode</dc:creator>
      <dc:date>2025-12-16T03:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: Adding filters to a calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4903325#M186471</link>
      <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1458820" data-lia-user-login="eem_2021" class="lia-mention lia-mention-user"&gt;eem_2021&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Alternative solution:&lt;/STRONG&gt; In addition to the marked answer, here’s another approach that works well when your profit values are stored as text and you want to filter out anything above 120.&lt;BR /&gt;&lt;BR /&gt;Calculated columns won’t respond to filters, you need a &lt;STRONG&gt;measure&lt;/STRONG&gt; instead. For example:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Profit ≤ 120 Total =
SUMX (
    FILTER (
        'Table',
        VALUE('Table'[Profit (Text)]) &amp;lt;= 120
    ),
    VALUE('Table'[Profit (Text)])
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In &lt;STRONG&gt;Power BI Desktop&lt;/STRONG&gt;, add this to a Card or Table visual. In &lt;STRONG&gt;Power BI Service&lt;/STRONG&gt;, use a slicer on Profit (Text) (set to &lt;EM&gt;≤ 120&lt;/EM&gt;) and add the measure to a Table visual.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;If you want the cutoff to be dynamic, create a small &lt;STRONG&gt;ThresholdTable&lt;/STRONG&gt; with values (50, 75, 100, 120, 150) and use it as a slicer. Update the measure with SELECTEDVALUE() so users can pick the threshold interactively.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here’s how it looks in Power BI Service,&amp;nbsp; using a slicer and table visual to filter and display totals:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Dec 2025 18:08:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-filters-to-a-calculated-column/m-p/4903325#M186471</guid>
      <dc:creator>Olufemi7</dc:creator>
      <dc:date>2025-12-16T18:08:33Z</dc:date>
    </item>
  </channel>
</rss>

