cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
JoJo70
New Member

TOTALMTD for 3 Last working days

Hallo,

I would like to create a measure that calculates a sum from the last 3 working days.

 

=calculate([measure1];DATESINPERIOD(Date[Date];LASTDATE(Date[Date]);-3;DAY)) is near to the Solution....- but for example on Friday it's wrong, because there will never be values on saturday or sunday.

 

Thanks in advancce

 

Jörg

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@JoJo70 Try something like this:

Measure = 
  VAR __Date = MAX('Date'[Date])
  VAR __DaysBack = 
    SWITCH( WEEKDAY( __Date, 2 ),
      7, 4,
      1, 5,
      2, 5,
      3
    )
  VAR __Table = CALENDAR( __Date - __Daysback, __Date)
  VAR __Table2 = FILTER( __Table1, WEEKDAY([Date],2) < 6 )
  VAR __Result = CALCULATE( [measure], Date[Date] IN __Table2 )
RETURN
  __Result


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Super User
Super User

@JoJo70 Try something like this:

Measure = 
  VAR __Date = MAX('Date'[Date])
  VAR __DaysBack = 
    SWITCH( WEEKDAY( __Date, 2 ),
      7, 4,
      1, 5,
      2, 5,
      3
    )
  VAR __Table = CALENDAR( __Date - __Daysback, __Date)
  VAR __Table2 = FILTER( __Table1, WEEKDAY([Date],2) < 6 )
  VAR __Result = CALCULATE( [measure], Date[Date] IN __Table2 )
RETURN
  __Result


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors