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.
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. |
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 |
---|---|
11 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
14 | |
12 | |
11 | |
10 | |
9 |