I'm importing an Excel file into SQL using a DTS package. There's a column in the Excel file called 'Description.' There are two fields in my SQL table called 'DetailDesc' and 'ShortDesc.' Both of these fields point to the same 'Description' column in my Excel file. The only exception is that the 'ShortDesc' field is only grabbing the first 40 characters (using Left function). After running the DTS package, I see that the 'DetailDesc' imported correctly, but the 'ShortDesc' returned all blanks. I thought maybe it had something to do with the Left function I was using, so I took it off and did the same import as the 'DetailDesc.' But now it just returns NULLs. So I'm doing the exact same thing with two different SQL fields pointing to an Excel column, with one importing it correctly and the other returning NULLs. Has anyone seen anything like this before?