I have a date column which shows me 2 values: Either date (1/1/2014 07:30PM) or Null.
I also created a calculated field "Month" which shows me only Month and a year but it also shows January 1 for Null Values
"=MonthName(Month(Fields!Requested_Start_Date.Value)) & " " & Year(Fields!Requested_Start_Date.Value)"
I also tried doing something like this:
=IIF(ISnothing(Fields!Requested_Start_Date.Value),"No Requested Date",(Fields!Requested_Start_Date.Value)
which shows me "No Request Date" for Null values but it also shows me the whole value of day and month (1/1/2014 07:30PM)
Is there anyway to combine those 2 values so I can get ""No Request Date" for NULL values but it also shows me month and a year as well instead of showing value in DATE format?