Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
DM_95
Helper I
Helper I

FlagThisMonth vs Month Previous Year

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!

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@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

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@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

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.