Hello All,
I am exporting data to .csv file from asp page. I am facing problem in the column which is showing date. Some date comes left aligned and some comes right aligned. As such there is no difference in the dates coming because I am just looping a recordset and writing the rs field which has datetime data.
Note: When I append " " to the datefield then it comes properly but then user cannot format that column to datetime as it no more remains date but a string.
rsDateSet = """ """ rs("AuthorDate") & """," ## This works fine and aligns the column but it converts the column into string so user is not able to format that column to any desired date format he/she wants.
Any helps appreciated.
Thanks
Varun R Doharey