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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Elofly
Frequent Visitor

Last Week Daily Sales Line Graph

Hi everyone!

 

I am trying to build a line graph where I have the following data:

- Y axe: Total Sales

- X axe: Days of the week (Monday, tuesday, etc.)

- Line A: Last week sales

- Line B: Previous last week sales

 

I was able to manage almost everything but I cannot seem to get both values in the same graph.

 

Can you help?

Thanks a lot!

 

1 ACCEPTED SOLUTION

Hi Freeman,

 

At the end I went for this:

Last Week TTV (-2) =
var LASTWEEK = WEEKNUM(TODAY()-7,2)
return
CALCULATE(SUM(vw_Becca_ZoeBookings[TotalPrice]),FILTER('Calendar Bookings','Calendar Bookings'[Week Number] = LASTWEEK))
 
Thanks a lot for your help!
 
Best regards,

View solution in original post

7 REPLIES 7
FreemanZ
Super User
Super User

That involves time intelligence functions. If you have a Date table, then it is easy. 
 
Supposing you have a measure for the current Total Sales name [Total Sales], then you can create two new measures with the code below:
 
Last Week Total Sales := CALCULATE ([Total Sales], DATEADD('Date'[Date], -7, DAY) )
 
Previous Last Week Total Sales := CALCULATE ([Total Sales], DATEADD('Date'[Date], -14, DAY) )
 
Plot all three measures in the same chart, then you see what you expect. 
 
Please come back, if you don't have a Date table. 

Hi !

Thanks for your quick answer. All good except, I dont have the WEEK option, only MONTH; YEAR, DATE, QUARTER, I guess I need to create it?

Thanks a lot for your help!

You are right, there is no WEEK interval. You can try -7 DAY and -14 DAY. 

Unfortunately, that would run weeks and not "calendar weeks" (from monday to sunday only)

What does that mean? Could you please provide a screenshot or upload the simplified report?

Hi Freeman,

 

At the end I went for this:

Last Week TTV (-2) =
var LASTWEEK = WEEKNUM(TODAY()-7,2)
return
CALCULATE(SUM(vw_Becca_ZoeBookings[TotalPrice]),FILTER('Calendar Bookings','Calendar Bookings'[Week Number] = LASTWEEK))
 
Thanks a lot for your help!
 
Best regards,

Glad to hear that. With WEEKNUM, we even don't need the Date table, bravo!!!

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.