Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
110 | |
102 | |
99 | |
38 | |
37 |
User | Count |
---|---|
158 | |
125 | |
76 | |
74 | |
63 |