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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Bhuvaraghan
Frequent Visitor

Getting previous week Value in Sales report

Hi All,

 

I am preparing a sales report where I want to show accounts which moved from one stage to another in the previous week.

WeekStageAccount NamePrevious Week
10/16/2020Proposal SubmittedABC-
10/16/2020DiscoveryXYZ-
10/23/2020Contract NegoticationABCProposal Submitted
10/23/2020DiscoveryXYZDiscovery
10/30/2020WonABCContract Negotication
10/30/2020Proposal SubmittedXYZDiscovery

 

I want to calculate the Previous week column using DAX. Any help is appreciated. If I need to create any helper columns to identify previous week also, I can do.

 

Thanks,

Bhuvaraghan

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Bhuvaraghan , Try a new column like

maxx(filter(table, [Week] = earlier([Week])-7 && [Account ] = earlier([Account ])),[Stage])

 

Please provide your feedback comments and advice for new videos
Tutorial Series Dax Vs SQL Direct Query PBI Tips
Appreciate your Kudos.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

4 REPLIES 4
Icey
Community Support
Community Support

Hi @Bhuvaraghan ,

 

You can also create a column like so:

Column =
CALCULATE (
    MAX ( 'Table'[Stage] ),
    FILTER (
        'Table',
        'Table'[Account Name] = EARLIER ( 'Table'[Account Name] )
            && 'Table'[Week]
                = EARLIER ( 'Table'[Week] ) - 7
    )
)

 

It works the same as what @amitchandak provided.

 

 

Best regards

Icey

 

If this post helps,then consider Accepting it as the solution to help other members find it faster.

Thanks a lot, worked like a charm 🙂

amitchandak
Super User
Super User

@Bhuvaraghan , Try a new column like

maxx(filter(table, [Week] = earlier([Week])-7 && [Account ] = earlier([Account ])),[Stage])

 

Please provide your feedback comments and advice for new videos
Tutorial Series Dax Vs SQL Direct Query PBI Tips
Appreciate your Kudos.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Thanks a lot for your help 🙂

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.