Column A contains account numbers, which are 16 digits long.
Column A is formatted to "0000000000000000".
When I Write this out to a text file, Excel tries to help by converting column A to Scientific Notation.
Here's the code:
While iCounter < iLastRow + 1
Set RngA = Range("A" & iCounter)
Set RngB = Range("B" & iCounter)
Set RngC = Range("C" & iCounter)
Write #2, RngA, RngB, RngC
iCounter = iCounter + 1
Wend
Is there a way to Write the contents of column A as 16 digits, not Scientific Notation?
Thanks
Column A is formatted to "0000000000000000".
When I Write this out to a text file, Excel tries to help by converting column A to Scientific Notation.
Here's the code:
While iCounter < iLastRow + 1
Set RngA = Range("A" & iCounter)
Set RngB = Range("B" & iCounter)
Set RngC = Range("C" & iCounter)
Write #2, RngA, RngB, RngC
iCounter = iCounter + 1
Wend
Is there a way to Write the contents of column A as 16 digits, not Scientific Notation?
Thanks