Need some help on this, as mentioned above this part trouble me cause it will show the value as #Error if the value of date is NULL. It's ok if there is a date value but not if NULL. Argghhhhhhh.... I already couple of expression below but none of it solve the issue :
=IIf(IsNothing(Fields!LastReviewDate.Value), "N/A", DateValue(Fields!LastReviewDate.Value).ToString("dd-MMMM-yyyy"))
OR
IIf(Fields!LastReviewDate.Value Is Nothing, "N/A", DateValue(Fields!LastReviewDate.Value).ToString("dd-MMMM-yyyy"))
OR
=IIf(Fields!LastReviewDate.IsMissing, "N/A", DateValue(Fields!LastReviewDate.Value).ToString("dd-MMMM-yyyy"))
Can anyone show me how to solve this? I wish to replace the NULL date with " " or "N/A" or " - "... This is the output :
I try to change the properties on my datasource but it giving me this kind of error message :