Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi ,
Hi,
I have a DAX as below where if the field is "Red OR Amber" then I show the value else its blank.
Solved! Go to Solution.
@Anonymous
Use blank()
Column = IF(Table1[Health] IN {"Red","Amber"} ,Table1[Values],blank())
@Anonymous
Use blank()
Column = IF(Table1[Health] IN {"Red","Amber"} ,Table1[Values],blank())
Check out the November 2023 Power BI update to learn about new features.