Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
My dataset looks like:
I would like to "merge" realization and budget in 1 column so I can make a more beautiful visualization.
When there is a value for realization then budget is always null. And for futher months realization is null and
a value is shown for budget.
In this example today is 31-05-2022.
Thank in advance.
Solved! Go to Solution.
Hey @MauriceK ,
You can add a new column using DAX which would look like:
budget/realisation = if([budget] = 0, [realisation],[budget])
See if it caters to your requirement.
HI Solutions work for me. 😄
Hey @MauriceK ,
You can add a new column using DAX which would look like:
budget/realisation = if([budget] = 0, [realisation],[budget])
See if it caters to your requirement.
| User | Count |
|---|---|
| 52 | |
| 41 | |
| 32 | |
| 15 | |
| 13 |
| User | Count |
|---|---|
| 84 | |
| 72 | |
| 37 | |
| 27 | |
| 24 |