H Herfried K. Wagner [MVP] Jan 27, 2004 #2 * "facicad said: How to convert number 0.17e-7 to 0.0000017 Click to expand... Store the number in a variable of, for example, type 'Double' and have a look at the variable's 'ToString' method.
* "facicad said: How to convert number 0.17e-7 to 0.0000017 Click to expand... Store the number in a variable of, for example, type 'Double' and have a look at the variable's 'ToString' method.
P PresterJohn Jan 27, 2004 #3 Dim d As Decimal = 0.000000017 ' 0.17e-7 Dim s As String = d.ToString("0.000000000") -- Prester John
A Armin Zingler Jan 27, 2004 #4 Herfried K. Wagner said: Store the number in a variable of, for example, type 'Double' and have a look at the variable's 'ToString' method. Click to expand... Which format string would you pass? ;-) I didn't find one. I assumed it should also work for 0.17e-6.
Herfried K. Wagner said: Store the number in a variable of, for example, type 'Double' and have a look at the variable's 'ToString' method. Click to expand... Which format string would you pass? ;-) I didn't find one. I assumed it should also work for 0.17e-6.