D
DG
I have an array that contains string values. When I put one of these values
into my spreadsheet it changes to Scientific.
Dim DataRow(12)
DataRow(9)="201E-13" ' for this example
Line = 2 ' for this example
Sheets("Sheet2").Cells(Line,9) = DataRow(9)
The result in Sheet2 I2 = 2.01E-11 and the format is Scientific. I manually
set this column to text before running the macro.
Any help would be great.
DG
into my spreadsheet it changes to Scientific.
Dim DataRow(12)
DataRow(9)="201E-13" ' for this example
Line = 2 ' for this example
Sheets("Sheet2").Cells(Line,9) = DataRow(9)
The result in Sheet2 I2 = 2.01E-11 and the format is Scientific. I manually
set this column to text before running the macro.
Any help would be great.
DG