Forum Discussion
calendar selectedvalue compare another table
- 5 years ago
Hi ,
I tried the following:
- Calendar is your Calendar table
- Calendar1 is your other table which contains the dates to check existence in your selection
- Create measure to return Selected Max Date
SelectedMaxDate = VAR SelectedMaxDate = CALCULATE( MAX('Calendar'[Date]), ALLSELECTED('Calendar') ) RETURN SelectedMaxDate- Create measure to check weather Selected Max Date is part of Calendar1. If yes, return "" otherwise return "Error".
CheckDate = VAR CheckDate = CONTAINSROW(VALUES(Calendar1),[SelectedMaxDate]) VAR Result = IF( CheckDate, "", "Error" ) RETURN ResultPBiX file under the link below:
Best regards
In a measure you can get the max date using
selectedvalue(Date[Date])
or
Maxx(allselected(Date), Date[date])
- mohammadrafic5 years ago
Helper I
it is bring end of the year date...it is not working .. and i need to compare that date with another table date is available or not.
or can you tell me how to hide the future dates from the abve pls
- ITManuel5 years ago
Responsive Resident
Hi ,
I tried the following:
- Calendar is your Calendar table
- Calendar1 is your other table which contains the dates to check existence in your selection
- Create measure to return Selected Max Date
SelectedMaxDate = VAR SelectedMaxDate = CALCULATE( MAX('Calendar'[Date]), ALLSELECTED('Calendar') ) RETURN SelectedMaxDate- Create measure to check weather Selected Max Date is part of Calendar1. If yes, return "" otherwise return "Error".
CheckDate = VAR CheckDate = CONTAINSROW(VALUES(Calendar1),[SelectedMaxDate]) VAR Result = IF( CheckDate, "", "Error" ) RETURN ResultPBiX file under the link below:
Best regards
- mohammadrafic5 years ago
Helper I
ITManuel Great !!. it is working when
Calendar = CALENDAR(minx('WSummary',[START]),date(2021,12,31))
but i need this condition
Calendar = CALENDAR(minx('WSummary',[START]),'WSummary',[END])i need to display the last available date by default when i open the report but it is not happening it is opening with 12/31/2021. please check if you have any idea. like 8/23/2021