March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
168 | |
116 | |
63 | |
57 | |
50 |