Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello everyone, I have a little problem that I can't solve.
I have a table in which I calculate the delta between two values. This delta is shown as a percentage. Sometimes I have values higher than 1000 and lower than -1000, I would like to exclude them from the column.
Now i calculate the delta with a measure called Var2%, then I created a new measure called Var% Adj to filter the data.
I tried with nested IF
Var% ADJ =
IF ( [Var2%] > 1000; "ND"; IF ( [Var2%] <= -1000; "ND"; [Var2%] ) )
While it successfully discards values higher than 1000, the measure doesn't discard values lower than -1000
Var2% | Var% ADJ |
20444050003040530,0% | ND |
0,0% | 0,0% |
24,9% | 24,9% |
-4065,7% | -4065,7% |
Any suggestion? Thank you
Solved! Go to Solution.
Hi @pierpa,
your measure Var2% is a percentage. That's why you must use 10 instead of 1000 in var% ADJ (1000% = 10).
Var% ADJ =
IF ( [Var2%] > 10; "ND"; IF ( [Var2%] <= -10; "ND"; [Var2%] ) )
Hi @pierpa,
your measure Var2% is a percentage. That's why you must use 10 instead of 1000 in var% ADJ (1000% = 10).
Var% ADJ =
IF ( [Var2%] > 10; "ND"; IF ( [Var2%] <= -10; "ND"; [Var2%] ) )
Thank You!!!
I feel really dumb, I was thinking about the original value. Thank you again!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
63 | |
55 | |
53 | |
36 | |
34 |
User | Count |
---|---|
85 | |
74 | |
55 | |
45 | |
43 |