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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.