Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi all!
I have a new column in a table that calculates the delta between two values.
DAX is:
However, the column calculates on rows that does not have any data yet. Therefore, returning 100%.
I would like this to be ignored so it doesn't show on my visuals.
What do I need to add to my DAX to prevent this?
Solved! Go to Solution.
Hi @Natasha93
Many ways but the simpliest is use IF
IF ( [Forcast] <> BLANK ( ), 1 - [Forcast]/[Actuals] )
Hi @Natasha93
Many ways but the simpliest is use IF
IF ( [Forcast] <> BLANK ( ), 1 - [Forcast]/[Actuals] )