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! It's time to submit your entry. Live now!
Hello,
I am trying to create a column (difference) in which votes achieved are subtracted from max votes achieved. I am able to do so for whole table, but if I apply filter to consituency name = any option, it don't change the value. I want the difference value should now consider max value of filtered consituency data.
Please find relevant images for same. Help me achieve it, please!
Solved! Go to Solution.
Hi @Anu,
If I understand you correctly, you should be able to use the formula below to create a measure(not column) to calculate difference in your scenario. ![]()
measure =
CALCULATE ( MAX ( 'table1'[votes achieved] ), ALLSELECTED ( 'table1' ) )
- MAX ( 'table1'[votes achieved] )
Note: You'll need to replace 'table1' with your real table name.
Regards
Hi @Anu,
If I understand you correctly, you should be able to use the formula below to create a measure(not column) to calculate difference in your scenario. ![]()
measure =
CALCULATE ( MAX ( 'table1'[votes achieved] ), ALLSELECTED ( 'table1' ) )
- MAX ( 'table1'[votes achieved] )
Note: You'll need to replace 'table1' with your real table name.
Regards
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
| User | Count |
|---|---|
| 50 | |
| 43 | |
| 36 | |
| 33 | |
| 30 |
| User | Count |
|---|---|
| 138 | |
| 120 | |
| 60 | |
| 59 | |
| 56 |