Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hey guys
I'm having trouble creating a measure that meets the following requirements:
I have a table view with production and target data for each location
I have a measure that calculates the gap (real - target) and makes the calculation weighted in relation to the total volume
Measure_GAP:
var gap = SUM('table'[real]) - SUM('table'[goal])
return SUM('table'[real]) * gap/ CALCULATE(SUM('table'[real]),ALL(table[local]))
I need to create a new measure that will return the sum of each line of Measure_GAP but ignoring the locality filter context
As per the example below
thank you all for your attention
Solved! Go to Solution.
Hi @DavidNunes7 ,
You can produce your required output in many ways, and one of them is as follows.
First, sumx your original measure over Local field as shown below to get the total of -0.875.
The next, write a second measure like below to ignore filter of Local field.
I attach a pbix file as an example.
Best regards,
Hi @DavidNunes7 ,
You can produce your required output in many ways, and one of them is as follows.
First, sumx your original measure over Local field as shown below to get the total of -0.875.
The next, write a second measure like below to ignore filter of Local field.
I attach a pbix file as an example.
Best regards,
Perfect!!!
Thank You
Hi,
Share the download link of the PBI file.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 58 | |
| 45 | |
| 41 | |
| 21 | |
| 18 |