SetBuilder
Programmer
When I use the transferspreadsheet command to import an Excel spreadsheet, one of the text fields (Course-ID) comes in as a scientific notated field. For example, 20012911 comes in as 2.001291+07. when I convert that back to a string, as:
strCourseID = str(vFieldIn1) I get: 20012900, loosing the last 2 digits.
The cells are defined as text in Excel.
I have tried converting it to a txt file, and a csv file, but because of the data, neither of these are very good options.
Any suggestions?
strCourseID = str(vFieldIn1) I get: 20012900, loosing the last 2 digits.
The cells are defined as text in Excel.
I have tried converting it to a txt file, and a csv file, but because of the data, neither of these are very good options.
Any suggestions?