Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi All,
New to Power BI, and am having trouble with what I thought would be a simple isssue...
I have some Measures :-
Solved! Go to Solution.
HI @Mark-Roberts,
You can add an if statement to your expression to check if the current value is 'not blank' to prevent the calculation expand to the not-required ranges.
Variance =
IF (
[Orders Previous Year] <> BLANK (),
DIVIDE ( [Orders Current Year], [Orders Previous Year], BLANK () ) - 1
)
Regards,
Xiaoxin Sheng
HI @Mark-Roberts,
You can add an if statement to your expression to check if the current value is 'not blank' to prevent the calculation expand to the not-required ranges.
Variance =
IF (
[Orders Previous Year] <> BLANK (),
DIVIDE ( [Orders Current Year], [Orders Previous Year], BLANK () ) - 1
)
Regards,
Xiaoxin Sheng
| User | Count |
|---|---|
| 51 | |
| 36 | |
| 29 | |
| 18 | |
| 17 |
| User | Count |
|---|---|
| 66 | |
| 57 | |
| 39 | |
| 22 | |
| 21 |