Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Using DAX to Filter a Table for a Status Column

Hi all,

 

I've trying to create a Status column based on whether the 'Difference From Target' column is positive or negative using this DAX as a measure:

 

Status = IF([Difference From Target] > 0, "Green", "Red")

 

mccardj_1-1656985359699.png

 

 

However, when I do so the table changes to below to include ALL phases instead of filtering based on the selected table.

 

mccardj_0-1656985320049.png

 

How do I update the DAX to make the selected table (1st table) keep its current values?

 

Thanks all

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Try like

 

Status = Switch(true(),
isblank([Difference From Target]), Blank() ,
[Difference From Target] > 0, "Green"
, "Red")

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

please help me to make table with target @amitchandak 

amitchandak
Super User
Super User

@Anonymous , Try like

 

Status = Switch(true(),
isblank([Difference From Target]), Blank() ,
[Difference From Target] > 0, "Green"
, "Red")

Anonymous
Not applicable

Worked perfectly! Thanks so much! Subscribed to your channel 🙂

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.