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,
I have this one Custom Column "Notable Change?" value as 'Error'. I need to display it as 'None' instead.
How do I handle null in the below formula? Sample screenshot is below and Error is highlighted in Red.
Here is the Custom Column formula:
=if [cCount]>0 and [ThreeYrAvg]>0 and ([cCount] - [ThreeYrAvg]>=5.0) and ((([cCount] * 1.00 - [ThreeYrAvg]) / [ThreeYrAvg]) * 100) >= 10.00 then "Increase" else if [cCount]>0 and [ThreeYrAvg]>0 and ([cCount] - [ThreeYrAvg]<=-5.0) and ((([cCount] * 1.00 - [ThreeYrAvg]) / [ThreeYrAvg]) * 100) <= -10.00 then "Decrease" else if ([cCount]>0 and [ThreeYrAvg] = null) then "none" else "None"
Here is how the sample data looks like -
Appreciate your help. Thanks!
Solved! Go to Solution.
Just move the condition below to the first.
[ThreeYrAvg] = null
Just move the condition below to the first.
[ThreeYrAvg] = null