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
ScholesBI
Frequent Visitor

Next N Months date table

Hi,

 

I want to add a classification to my date table

I have already added:

 

 

IsCurrentQuarter = 
var qtr = QUARTER('Calendar'[Date])
var curr_qtr =QUARTER(TODAY())
var yr = YEAR('Calendar'[Date])
var curr_yr = YEAR(TODAY())
return
IF(qtr = curr_qtr && yr = curr_yr,"Yes","No")

 

Now I want to add "IsupcomingNmonths"  

N is the number of upcoming months.

 

Thanks,

 

 

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

That would just be 

IsupcomingNmonths = 
VAR _Months = DATEDIFF ( TODAY(), 'Calendar'[Date], MONTH )
RETURN 
IF ( _Months >= 0 && _Months <= 2, "Yes", "No" )

View solution in original post

3 REPLIES 3
jdbuchanan71
Super User
Super User

That would just be 

IsupcomingNmonths = 
VAR _Months = DATEDIFF ( TODAY(), 'Calendar'[Date], MONTH )
RETURN 
IF ( _Months >= 0 && _Months <= 2, "Yes", "No" )
jdbuchanan71
Super User
Super User

@ScholesBI 

Try this assuming I understood what you were looking for.

IsupcomingNmonths = 
VAR _Months = DATEDIFF ( TODAY(), 'Calendar'[Date], MONTH )
RETURN 
IF ( _Months <= 0, BLANK(), _Months )

@jdbuchanan71  Thanks, the formula works. However I actually need Today minus one month. So in  TODAY() = March upcoming 3 month equals March April May. And it should be rolling forward 3 months, with a "yes" / "no"result

 

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.

Top Solution Authors