Thread: Data Problem
View Single Post
  #9   Report Post  
Posted to microsoft.public.excel.programming
Nils Titley Nils Titley is offline
external usenet poster
 
Posts: 84
Default Data Problem

I like the split function idea because the dates are not dd/mm/yyyy they
could be d/m/yyyy but the split would take care of that.

But I need help with determining the format. If the format is general, I do
not have to do anythiing. It is only when the dates in the CSV file are in
TEXT format that I need to process them with the split function.

How do I determine the format?

Thanks for your help

"NateBuckley" wrote:

Couldn't you just read in the CSV files and put the dates into a field that
is set to TEXT format, then you could use the SPLIT function using the "/"
character as the diliminator. Then just have

newDay = splitArray(0)
NewMonth = splitArray(1)
NewYear = splitArray(2)

or something along those lines?



"Nils Titley" wrote:

I tried getting help with this before and did not get it resolved.

Here is the problem. I am processing data files in a .CSV format. These
files are processed in South Africa where they use the date format:
dd/mm/yyyy. When I process the file if the dates are in a General Format
there is no problem with the dates. But we have found that some of the files
have mixed format where the dates are in General Format and some are in Date
Format. The date format is the problem.

Example: 12/01/2008 South Africa is actually Jan 12, 2008

In General format, when I process the data and write the date to a
worksheet, the date is still 12/01/08 formatted to dd/mm/yy.
If the data is in Date Format, the date printed then becomes 01/12/08 or Dec
1, 2008. Because Excel thinks the date is Dec 1, 2008.

I need some one that is good with dates!

Thanks