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
Hello,
I am trying to create a measure which can show the highest monthly total sales in a given time period. See the sales table below:
Date | Sales |
7/2/2020 | $ 100 |
7/2/2020 | $ 200 |
7/28/2020 | $ 500 |
8/4/2020 | $ 300 |
9/5/2020 | $ 200 |
7/2/2021 | $ 100 |
7/2/2021 | $ 100 |
8/4/2021 | $ 900 |
9/5/2021 | $ 200 |
There is another date table that I want to filter on. When I filter year 2020, the measure should show $800 (July 2021 total sales amount); when I filter 2021, the measure should show $900 (August 2021 total sales amount); when I don't filter anything, it should show $900 (August 2021 total sales amount); when I select a sepecific month, it should show the monthly total sales amount of the month selected - e.g. if I select Sept 2021, it should show $200.
Is there a way to create this measure without creating a new table?
Thank you very much for your help!
Solved! Go to Solution.
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Hi,
Assuming your Sales table is related appropriately to a Date table named Dates:
Max Monthly Sales =
VAR MyTable =
SUMMARIZE (
Sales,
Dates[Date].[Year],
Dates[Date].[Month],
"Monthly Sales", SUM ( Sales[Sales] )
)
RETURN
MAXX ( MyTable, [Monthly Sales] )
Regards
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
26 | |
21 | |
20 | |
13 | |
12 |
User | Count |
---|---|
40 | |
27 | |
27 | |
21 | |
19 |