The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
User | Count |
---|---|
83 | |
83 | |
37 | |
34 | |
32 |
User | Count |
---|---|
92 | |
79 | |
61 | |
51 | |
51 |