View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
dr chuck dr chuck is offline
external usenet poster
 
Posts: 74
Default data import question

I am trying to import data from an excel file into another excel file. The
data contains "+" and "0" values.

see sample of pre import data.
1 7011 4/14/2006 A2993 + + 0 +
2 7011 4/14/2006 B4253 + + 0 0
3 7011 4/14/2006 C3505 + 0 + +
4 7011 4/14/2006 D765 + 0 + 0

it imports as the following:
1 7011 4/14/2006 A2993
2 7011 4/14/2006 B4253 0
3 7011 4/14/2006 C3505 0 +
4 7011 4/14/2006 D765 0 + 0

why does the import delete the "0" in one column and the + in the other
column and not allow both to be imported as the original file?????
--
dr chuck