Dec 8, 2004 #1 logi2000 Programmer Jun 17, 2003 221 CR i want to format a number to have 6 decimal places, how can i do that ? 34.54309009 to 34.5430
Dec 8, 2004 1 #2 JohnYingling Programmer Mar 24, 2001 3,742 US That is 4 places??? Ty Dim whatnum as Double = .12345678 dim sWhat as String = whatnum.Tostring("#####.000000") http://www.VBCompare.com Compare Code Upvote 0 Downvote
That is 4 places??? Ty Dim whatnum as Double = .12345678 dim sWhat as String = whatnum.Tostring("#####.000000") http://www.VBCompare.com Compare Code
Dec 8, 2004 Thread starter #3 logi2000 Programmer Jun 17, 2003 221 CR thats great tanks Upvote 0 Downvote