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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
bilalkhokar73
Helper IV
Helper IV

DATE Selection Before 2 Month After 2 Month

Dear Team,

I have the date table and Amount from the sales table 

When I select a date of let's say 15 April 2021 then I need that Column should show me Before 2 month Sales and After 2-month sales  (i.e., 15 Feb to 15 April sales I need ) and 16 April to 15 June
If I select a  Month instead of a date,  let's say I selected July 2021 it then it should show me May-June and July-August sales.

1 REPLY 1
mahoneypat
Microsoft Employee
Microsoft Employee

Here is a measure expression that shows one way to do it.  You can adapt it and use MAX('Date'[Date]) to get the Next Two Months measure.

 

Two Months Before =
VAR mindate =
    MIN ( 'Date'[Date] )
RETURN
    CALCULATE (
        [Total Sales],
        FILTER (
            ALL ( 'Date' ),
            'Date'[Date] >= EDATE ( mindate-2 )
                && 'Date'[Date] <= mindate
        )
    )

 

Pat

 





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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