The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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] )