Hi I am writing a VBA Macro to read data from a web site and dump it into a file so a third party program can process the data from this csv file, however I have noticed that the date column on excel seems fine, but when I write the full range of dates and its values to a csv file the dates are surrounded by "#" (hash) characters. I have researched and I have learned that this is a way excel identifies this data as dates and automatically display them properly on the cells, however the program that process the csv files does not require (or understands) the # date format, is there a way to remove the # characters from the date?, or some conversion that I can apply to the date column before I write it to the file so it does not include these characters on the date?
PS: I require a mm/dd/yyyy format on the date value
Thanks!