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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.