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
Hi All,
I have created 3 measures: Net Sales, Net Sales PY and Net Sales PY-1. I want to display the Net Sales of the current month vs. that same month Last Year (Net Sales PY) and vs. that same month 2 years ago (Net Sales PY-1). Currently only the filter 'Year=2022' is active.
I would like to create some sort of flag (FlagThisMonth_OverYears) to display these 3 values in a stacked bar chart. Any ideas how to achieve this?
Thanks in advance!
Solved! Go to Solution.
@DM_95 , you can have flag like
Month Type = Switch( True(),
eomonth([Date],0) = eomonth(Today(),-24),"2nd Last year same Month" ,
eomonth([Date],0) = eomonth(Today(),-12),"Last year same Month" ,
eomonth([Date],0) = eomonth(Today(),-1),"Last Month" ,
eomonth([Date],0)= eomonth(Today(),0),"This Month" ,
Format([Date],"MMM-YYYY")
)
for measure like
Power BI — Month on Month with or Without Time Intelligence
https://medium.com/@amitchandak.1978/power-bi-mtd-questions-time-intelligence-3-5-64b0b4a4090e
https://www.youtube.com/watch?v=6LUBbvcxtKA
@DM_95 , you can have flag like
Month Type = Switch( True(),
eomonth([Date],0) = eomonth(Today(),-24),"2nd Last year same Month" ,
eomonth([Date],0) = eomonth(Today(),-12),"Last year same Month" ,
eomonth([Date],0) = eomonth(Today(),-1),"Last Month" ,
eomonth([Date],0)= eomonth(Today(),0),"This Month" ,
Format([Date],"MMM-YYYY")
)
for measure like
Power BI — Month on Month with or Without Time Intelligence
https://medium.com/@amitchandak.1978/power-bi-mtd-questions-time-intelligence-3-5-64b0b4a4090e
https://www.youtube.com/watch?v=6LUBbvcxtKA
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |