Hi I'm currently working on some SSRS reports and the data I am getting comes in quite a range. I'm getting dates in forms of: 6/18/2010 6:00:00 AM, 6/18/2010, 2010/6/18
I was hoping to be able to come up with a formatting code to use for the row so that it would convert any of these into the MM/dd/yyyy format and anything else just leave untouched. Unfortunately the scope of my VB skills do not compliment my objective. I was hoping someone might be able to help me with this. I was thinking something along the lines of iif(me.Value=####/##/####@##:##:##@@&, MM/dd/yyyy, nothing) but that doesn't seem to work.
Thanks in advance.
EDIT: =iif(isDate(me.Value), "MM/dd/yy", nothing) works for everything except something like 2010/06/18.