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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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