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 ...
Anonymous
6 years agoNot applicable
declare @date datetime; set @date = null
--declare @date datetime; set @date = '2015-01-01'
select coalesce( convert( varchar(10), @date, 103 ), '')