Hi! How to write the syntax when you try to compare the dates. In this case I try to check if the date is empty(then it's 1/1/1900) then the field should be hidden. This is what I tried but didn't succeed:
=iif(Fields!ModifiedDate.Value="1/1/1900",
true,false)
Hidden expression with dates?
Alba
parlance
It just the otherway round: =iif(Fields!modifiedDate.Value=CDate("1/1/1900"), false, true)
Warren13
Thanks for the post but unfortunately I didn't get it. The main problem is syntax - I don't know where to use Cdate() -function. I tried this:
=iif(Cdate(Fields!modifiedDate).Value) > "1/1/1900",false,true)
the compiler didn't like it :)
Can you give me an example