Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have a matrix in which I have 2 measures and now I want to create a 3rd measure which gives me [measure1 - measure 2] only when measure 2 is not blank. If measure 2 is blank then measure 3 should also be blank.
Outcome
Department | employee | Measure 1 | Measure 2 | Measure 3 |
IT | John | 10 | ||
IT | Ilse | 20 | 50 | -30 |
Finance | Jack | 24 | 10 | 14 |
Finance | Josie | 34 | 30 | 4 |
Finance | Jebaca | 65 | ||
HR | Jay | 65 | 50 | 15 |
HR | Jones | 50 |
I have tried the measure below but is does not work unfortunatly.
I hope you can help me
Solved! Go to Solution.
Hi @BobKoenen
Measure 3 =
VAR BB = [Measure 1]
VAR VC = [measure 2]
RETURN
IF (
NOT ISBLANK ( VC ),
BB - VC,BLANK()
)
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
Hi @BobKoenen
Measure 3 =
VAR BB = [Measure 1]
VAR VC = [measure 2]
RETURN
IF (
NOT ISBLANK ( VC ),
BB - VC,BLANK()
)
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
22 | |
10 | |
10 | |
9 | |
7 |