Hi everyone,
I need to limit the data that is being shown in a graph by following this criteria:
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.
Perhaps that is not the best approach.
Any help is much appreciated, thanks in advance.
Regards
Solved! Go to Solution.
You use
VAR EndOfLastMonth =
EOMONTH ( TODAY (), -1 )
VAREndOfTwoMonthsAgo =
EOMONTH ( TODAY (), -2 )
VArCriteriaDate =
IF ( DAY ( TODAY () ) >= 15, EndOfLastMonth, EndOfTwoMonthsAgo )
You use
VAR EndOfLastMonth =
EOMONTH ( TODAY (), -1 )
VAREndOfTwoMonthsAgo =
EOMONTH ( TODAY (), -2 )
VArCriteriaDate =
IF ( DAY ( TODAY () ) >= 15, EndOfLastMonth, EndOfTwoMonthsAgo )