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.
Hi Experts
I am trying to subtract one % value from another % value and i cannot get BI to give the correct results. The formula is as follows:
FORMAT(CALCULATE([RH Total Revenue PY], FILTER(Management,Management[Level5]="UK Region"))-CALCULATE([RH Total Revenue PY], FILTER( 'Reporting Hierarchy 2','Reporting Hierarchy 2'[Tweaked Franchise]="INFUSION DEVICES"), FILTER( 'Reporting Hierarchy 2','Reporting Hierarchy 2'[Tweaked Sub Region]="UK Region")),"#,##0.0%;(#,##0.0%)"),
Solved! Go to Solution.
@Anonymous,
You may modify your measure using DAX below and check if it can meet your requirement.
Result = FORMAT ( ( CALCULATE ( [RH Total Revenue PY], FILTER ( ALL ( Management ), Management[Level5] = "UK Region" ) ) - CALCULATE ( [RH Total Revenue PY], FILTER ( ALL ( 'Reporting Hierarchy 2' ), 'Reporting Hierarchy 2'[Tweaked Franchise] = "INFUSION DEVICES" && 'Reporting Hierarchy 2'[Tweaked Sub Region] = "UK Region" ) ) ), "#,##0.0%;(#,##0.0%)" )
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous,
You may modify your measure using DAX below and check if it can meet your requirement.
Result = FORMAT ( ( CALCULATE ( [RH Total Revenue PY], FILTER ( ALL ( Management ), Management[Level5] = "UK Region" ) ) - CALCULATE ( [RH Total Revenue PY], FILTER ( ALL ( 'Reporting Hierarchy 2' ), 'Reporting Hierarchy 2'[Tweaked Franchise] = "INFUSION DEVICES" && 'Reporting Hierarchy 2'[Tweaked Sub Region] = "UK Region" ) ) ), "#,##0.0%;(#,##0.0%)" )
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks for th excellent feedback jimmy, let me test the solution
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 |
---|---|
79 | |
73 | |
58 | |
36 | |
32 |
User | Count |
---|---|
90 | |
60 | |
60 | |
49 | |
45 |