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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
finzilla
Frequent Visitor

Same Period Last Week

Hello... I'll simplify this by having only five columns within the SalesTransaction table:

 

TransDate (eg. 05/29/2018)

TransTimePeriod (eg. 06:30-07:00)

SaleAmount (eg. 200.00)

ThisWeek ( measure where = 1 when True)

LastWeek (measure where= 1 when True)

 

I also have a Date table.

 

I want to create a visual that shows the following:

 

hourly.png

 

Essentially I need to summarize the SaleAmount for each TransTimePeriod (easy so far), and then compare it for the same period last week (which is where I'm getting stuck).

 

 

 

 

 

4 REPLIES 4
nfero68
Regular Visitor

Working solution! THX! 

 

ChandeepChhabra
Impactful Individual
Impactful Individual

@finzilla Please share your sales transaction table

Here is a simplified example of the SalesTransaction table (it's a whole lot more sophisticated but this will do):

 

data.png

 

Date file is just a list of dates.

Hi @finzilla,

 

Please check the demo in the attachment. 

1. I would suggest adding a column in the date table.

WeekNum = WEEKNUM([Date],2)

2. Create three measures.

 

Today =
CALCULATE ( SUM ( Table1[SaleAmount] ), 'Calendar'[Date] = TODAY () )
LastWeek =
CALCULATE (
    SUM ( Table1[SaleAmount] ),
    'Calendar'[WeekNum]
        = WEEKNUM ( TODAY (), 2 ) - 1
)
Variance = [Today] - [LastWeek]

Same Period Last Week.PNG

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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