I have an interesting challenge that is not a FWH problem ... but the experts here can probably put me on the right track to solving it.
I have data on an Excel spreadsheet. I am converting it into a .dbf file within my program. Everything is fine except for one issue.
One column of the spreadsheet is treated as Numeric. The actual numeric values, on the spreadsheet, or right justified, but subdata in that column with alpha characters is left justified. So it looks something like this:
36
36AB
36CVD
36MMO
36SSD
I need to translate all of these values to strings. So, I read the value of the cell, and check its type. All of them come up with Numeric so I would want to convert them with a STR( ) function. The 36 translates fine, but the 36AB then throws an error because the STR( ) function can't convert the AB of the value.
Does anyone have experience with this type of problem ? Any thoughts on a solution ?
I cannot change the type of the column when it is provided. Its data generated from a large system and that is simply the way they do it.
Thanks for any ideas you can offer.