I have a report that includes a text field containing a date (in text though, not a date type). The date is like '2016-03-24 09:47:00'. The report runs and shows the date properly. Now however, I only want the date portion so I tried to modify that report field by adding an expression:
Left$(myfieldname, 10)
However, now, when I run the report, it shows #Type! where the date used to be.
What am I doing wrong?