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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
electrobrit
Post Patron
Post Patron

hours by day previous week

this seems so easy but my mind can't wrap my head around it. Trying to show how many hours spent doing certain tasks and compare to last week. 

I have used all kinds of formulas I'm finding and it's giving me totals whereas I want it by day so when i put in chart, I'm comparing week over week. 
what i'm getting.png

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@electrobrit,

 

If you are trying to find the same day last week, then you can create a calculated columns as follow:

 

Total Last week = VAR day_lastweek = DATEADD(Table11[Date],-7,DAY) RETURN
CALCULATE(SUM(Table11[Total Hours]),
            FILTER(Table11,
                   Table11[Date] =day_lastweek))

You will get this result:

3.PNG

 

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@electrobrit,

 

If you are trying to find the same day last week, then you can create a calculated columns as follow:

 

Total Last week = VAR day_lastweek = DATEADD(Table11[Date],-7,DAY) RETURN
CALCULATE(SUM(Table11[Total Hours]),
            FILTER(Table11,
                   Table11[Date] =day_lastweek))

You will get this result:

3.PNG

 

 

Anonymous
Not applicable

Hi,

 

Are you trying to return:

  • Total hours on the same day last week or
  • Total hours in whole previous week?

 

 

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.