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
igancedo
Regular Visitor

Dynamic MAX date

Hi everyone,

 

I need to limit the data that is being shown in a graph by following this criteria:

 

  • If today is before the 15th of the current month, show up to the last day of two months ago
  • If today is equal or after the 15th, show up to the last day of the previous month.

 

i.e: if we are one April 7th, show up to February 28th; after April 15th show up to March 31st and so on....

 

I think there are many ways to accomplish this, the aproach that I am trying to follow consists of a binary measure that determines the MAX date to show data depending on the current date. A few variables let me obtain dynamically the paramenters, however I am not sure how to proceed with the logic to determine the MAX date for each case.

 

VAR today_var = DATE(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY()))
VAR delay = DATE(YEAR(TODAY()),MONTH(TODAY()),15)
VAR maxDateBefore = EOMONTH(TODAY(), -2)
VAR maxDateAfter = EOMONTH(TODAY(), -1)

 

Perhaps that is not the best approach.

 

Any help is much appreciated, thanks in advance.

 

Regards

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

@igancedo 

You use

VAR EndOfLastMonth =
EOMONTH ( TODAY (), -1 )
VAREndOfTwoMonthsAgo =
EOMONTH ( TODAY (), -2 )
VArCriteriaDate =
IF ( DAY ( TODAY () ) >= 15, EndOfLastMonth, EndOfTwoMonthsAgo )

View solution in original post

1 REPLY 1
tamerj1
Super User
Super User

@igancedo 

You use

VAR EndOfLastMonth =
EOMONTH ( TODAY (), -1 )
VAREndOfTwoMonthsAgo =
EOMONTH ( TODAY (), -2 )
VArCriteriaDate =
IF ( DAY ( TODAY () ) >= 15, EndOfLastMonth, EndOfTwoMonthsAgo )

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