Forum Discussion
bignadad
2 years agoHelper I
Return value from Date table based on current date
This seems so simple but its not working. I have a MasterDate table and I am trying to find the first Date for the Incentive Quarter. The incentive quarter is based on today's date which w...
- 2 years ago
It seems like this one should work. Is there maybe a filter on the dates tables somewhere else? Maybe try this.
thisQtr = CALCULATE ( MAX ( MasterDate[Incentive Quarter] ), ALL ( MasterDate ), MasterDate[Dates] = TODAY () )Or maybe your MasterDate table does not include today meaning it is cutting off before today?
I tested something similar in a sample file and got what I would expect:
Today Month Year = CALCULATE ( MAX ( Dates[Mth-Year] ), ALL ( Dates ), Dates[Date] = TODAY () )
Ashish_Mathur
2 years agoSuper User
Hi,
Share some sample data to work with (in a format that can be pasted in an MS Excel file) and show the expected result.