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 am trying to establish a fund balance based off a combination of 3 digit funds. My current formula is this:
Solved! Go to Solution.
Hi @Anonymous ,
You may try ALL function. It can ignore the filtering of the slicer.
For example,
Put the ID column in the slicer, then select B and C, my measure is to calculate the value of Full Code equal to 10400-0.
Measure = CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),[Full Code]="10400-0"))
If you are still confused, please provide dummy data and expected results.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
You may try ALL function. It can ignore the filtering of the slicer.
For example,
Put the ID column in the slicer, then select B and C, my measure is to calculate the value of Full Code equal to 10400-0.
Measure = CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),[Full Code]="10400-0"))
If you are still confused, please provide dummy data and expected results.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , if you putting a slicer on table UtilityCheck or joined table, then that should work
also you can simplify it
CALCULATE( SUM ('UtilityCheck',[CY-AMT]),filter('Accounts','Accounts'[Full Code] in{ "10400-0" ,"10520-0"))
- CALCULATE( SUM ('UtilityCheck',[CY-AMT]),filter('Accounts','Accounts'[Full Code] in{ "10521-0" ,"10570-0", "10571-0"))
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
25 | |
10 | |
7 | |
6 | |
6 |
User | Count |
---|---|
30 | |
11 | |
11 | |
10 | |
6 |