Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

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.

Reply

How to sum all up to selected max date

Hallo

 

Can someone help me to create af measure that sum all post from first date to the max selected date in slicer.

 

This measure works (ofcauce)

 

Saldo = CALCULATE(SUM(NavPosteringer[Beløb]),
ALL(Datetable[Date]),
NavPosteringer[Bogføringsdato] <= DATE(2021, 08, 31))
 
but when i change to:
Saldo = CALCULATE(SUM(NavPosteringer[Beløb]),
ALL(Datetable[Date]),
NavPosteringer[Bogføringsdato] <= MAX(Datetable[Date])) 


is dosent work.
How can i do it??
 
Best regards Andreas
1 ACCEPTED SOLUTION

Did you select any date on the slicer?

Try this:

Saldo2 = CALCULATE(SUM(NavPosteringer[Beløb]), FILTER(ALL(NavPosteringer[Bogføringsdato]),NavPosteringer[Bogføringsdato] <= SELECTEDVALUE(Datetable[Date],MAX(Datetable[Date]))))

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos✌️!!

 

View solution in original post

6 REPLIES 6
VahidDM
Super User
Super User

Hi @andreasalleslev 

 

You need to use the  SELECTEDVALUE dax code.

Try this:

Saldo = CALCULATE(SUM(NavPosteringer[Beløb]),
ALL(Datetable[Date]),
NavPosteringer[Bogføringsdato] <= SELECTEDVALUE(Datetable[Date])) 
 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos✌️!!

 
 

Hallo

Thank you, but i get a error:

 

andreasalleslev_0-1631786247021.png

Hmm?? have you any idea??

@andreasalleslev 

That is because you need to use that in filter.

try this:

Saldo = CALCULATE(SUM(NavPosteringer[Beløb]),
Filter(ALL(Datetable[Date]),NavPosteringer[Bogføringsdato] <= SELECTEDVALUE(Datetable[Date])))
 
 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos🙏!!

Okay - now I not got a error, but is dont calculate.

 

Saldo2 = CALCULATE(SUM(NavPosteringer[Beløb]), FILTER(ALL(NavPosteringer[Bogføringsdato]),NavPosteringer[Bogføringsdato] <= SELECTEDVALUE(Datetable[Date])))
 
the saldo2 is blank. 

Did you select any date on the slicer?

Try this:

Saldo2 = CALCULATE(SUM(NavPosteringer[Beløb]), FILTER(ALL(NavPosteringer[Bogføringsdato]),NavPosteringer[Bogføringsdato] <= SELECTEDVALUE(Datetable[Date],MAX(Datetable[Date]))))

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos✌️!!

 

Thank you som much - Is exacly what i want.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.