Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.