TT as a Text is equal
TT= "970531101235"
Then converted in P6 as below
P6 = CSng(TT)
Now P6 is equal 9.705311E+11
Which after formatting as below;
C6 = Format(P6, "#,####")
It is equal 970,531,100,000
And truncated so the last 5 digits converted to zero.
I want to convert TT to a complete Number(970,531,101,235 : Single Percision).
How could I solve the problem?