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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
DM_95
Frequent Visitor

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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