Forum Discussion
Nivas538
Microsoft Employee
6 years agoHow do we update blank values with selected date value
Hi All, Wanted to update blank values in Date column with Selected value (Minimum Value: 08-08-2019 ) Dynamically ? Date Slicer For ex: 1. Above slicer is the Date slicer with Between ...
Greg_Deckler
Community Champion
6 years agoIf you are truly trying to update a column this will not work. Columns are static, calculated at the time of data refresh. Columns are not dynamic like measures. Thus, you can never have a measure update a column on the fly (dynamically). Only at refresh.
- Nivas5386 years ago
Microsoft Employee
Thanks for the quick response.
With out updating column, Can we create measure with same condition ?
for Ex:
S_date_Measure = IF(SELECTEDVALUERegistration[StartDate],MIN(Registration[StartDate]))=BLANK(),1,2)Instead of 1 we need selected value from slicerThanks,Sri- v-chuncz-msft6 years ago
Community Support
Just drag [Date] from a disconnected calendar table to Slicer, and use MIN function.
MIN ( 'Calendar'[Date] )