cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
igancedo
New Member

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
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Top Solution Authors
Top Kudoed Authors