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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
Anonymous
Not applicable

DAX IF formula based on YTD of the prior month

Hi all.

 

My current DAX formula is:

 

Measure = IF(TODAY()>('Date'[Date]),"Actual","Forecasted")
 
So, that labels the data as Actual if it the date is today or before, and Forecasted if the date is tomorrow through the future.
 
Is there a way to label the data to be Actual based on the prior months? So, as of today, March 12, only January and February would be labeled as Actuals.
1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

@Anonymous 

Try 

Measure = IF(EOMONTH(TODAY(),-1)>('Date'[Date]),"Actual","Forecasted")

View solution in original post

3 REPLIES 3
jdbuchanan71
Super User
Super User

@Anonymous 

Try 

Measure = IF(EOMONTH(TODAY(),-1)>('Date'[Date]),"Actual","Forecasted")

Hi! Is there a way to do this with MTD and QTD? I would like to label MTD and QTD sales as actual and future dates as forecasted.

Anonymous
Not applicable

Thank you!

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

Feb2025 NL Carousel

Fabric Community Update - February 2025

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

Top Kudoed Authors