Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Change DATE Column to TEXT Column

Status
Not open for further replies.

TC2000

Programmer
Dec 28, 2000
32
0
0
HK
How do I Change DATE Column to TEXT Column?

I have a date column with value "02/04/2001".
Using workbooks.saveas function to save worksheet as csv, it become "2/4/2001"

Best regards
 
TC2000,

This is one "workaround"... which will leave you with a "space" character in front of your numbers when you save the file as a CSV file. If you can live with the "space" character, then the following will work for you.

1) In an adjacent column, use the following formula, and copy it down for each date in your column. Naturally replace the "A1" in the formula for your date column.

=" "&RIGHT("0"&MONTH(A1),2)&"/"&RIGHT("0"&DAY(A1),2)&"/"&YEAR(A1)

2) Convert the formula column to values, and

3) Replace the date column data with your new values.

Hope this helps. Please advise as to how useful this workaround is.

Regards, ...Dale Watson dwatson@bsi.gov.mb.ca
 
Dale Watson

Do you have any other suggustion for converting the date without the leading BLANK
Thanks

Regards
Tony
 
Tony,

In experimenting with options, I've found that there NEEDS to be some kind of character placed ahead of the date - to keep it as "TEXT" - otherwise Excel converts it to a DATE.

The character some use is the ' ... the left-aligned label prefix. Therefore, you would use it in place of the SPACE character ...as follows:

="'"&RIGHT("0"&MONTH(A1),2)&"/"&RIGHT("0"&DAY(A1),2)&"/"&YEAR(A1)


That's the best I can come up with. I hope it's a workable alternative.

Or, perhaps someone else out there has an other option ? ? ?

Regards, ...Dale Watson dwatson@bsi.gov.mb.ca
 
Dear Tony,

in an adjactant column try this

=TEXT(B1;"tt.MM.jj")
where "tt.MM.jj" should/could/may be on an english maschine "dd.MM.yy"
and B1 is the cell with the date value.


let me know if it works

regards Astrid
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top