Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
This is table: Customer
And this is table Transactions:
They are related by No.
I want the running total of Esaldo:
So:
Due to the external filter (slicer).
So, this should do it:
So, maybe... ALLSELECTED?
Solved! Go to Solution.
Have you checked the file?
Have you checked the file?
Check the attached file, you need to keep the filter on name and ignore the other columns.
And how about...
As I can see it's correct.
the last line is the same as the result. no ?
Try this measure:
_RT = CALCULATE(SUM(Transactions[ESaldo]), FILTER(ALLEXCEPT('Transactions', Customer[Name]), 'Transactions'[Date] <= MAX('Transactions'[Date])))
As you may see, it is still wrong...
Change the slicer to "DEF"...
You need to create a table date, and refer it inside the measure for running total.
You may find the PBIX here:
https://drive.google.com/drive/folders/1W5cnLtIBD9REYbr3VdhIZqTcCtxz62hp?usp=sharing 
@webportal 
Your below measure should work, what id you get when you applied it?
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
YouTube LinkedIn
⭕  Subscribe and learn Power BI from these videos
 ⚪ Website ⚪  LinkedIn ⚪  PBI User Group 
Your first used ALL(Transactions), this one is with ALL(Transactions[Date]).
Is still wrong using the date inside all ?
Try this one:
CALCULATE(
SUM(Transactions[ESaldo]),
FILTER(
ALL(Transactions[Date]),
Transactions[Date] <= MAX(Transactions[Date])
)
)
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		
Thanks a lot, that was exactly my first atempt, as you can read in my post, but it is wrong.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.