Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
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.
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
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
87 | |
87 | |
85 | |
67 | |
49 |
User | Count |
---|---|
135 | |
112 | |
100 | |
66 | |
62 |