Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join 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.
@Anonymous , 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
@Anonymous , 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
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 21 | |
| 19 | |
| 12 |
| User | Count |
|---|---|
| 58 | |
| 53 | |
| 41 | |
| 34 | |
| 32 |