I am a beginner level Access user. I imported an Excel spreadsheet with the my dates fields showing as text. I created a query to reformat so that they show in date format. However, when the field is blank, I get an #Error showing. How do I get it remove this message and just show a blank? Also, I am also trying to retain the field name as the column label and it will not allow. Is there a better way to make this happen?
Table date format is text 10-19-2015. The column label I need is the field name, Start Date. If I remove the label the column returns with Expr 1 label.
Below is my expression
Start Date: IIf([Start Date] Is Null,"",Format(CDate([Start Date]),"mm/dd/yyyy"))
Hopefully someone can assist me in combining two expressions to get the results I need.