Apr 19, 2004 #1 Nambiti MIS Apr 19, 2004 10 GB Hi, I need to format my numbers to thousands. Example: 57,000 to 57 58,985 to 59 58,350 to 58 Thanks
Apr 19, 2004 1 #2 Madawc Programmer Sep 5, 2002 7,628 GB Why not divide by 1000 and round? Something like Code: Round({value]/1000) This is for Crystal 8.5. It helps if you specify your verison. Madawc Williams East Anglia, Great Britain Upvote 0 Downvote
Why not divide by 1000 and round? Something like Code: Round({value]/1000) This is for Crystal 8.5. It helps if you specify your verison. Madawc Williams East Anglia, Great Britain
Apr 19, 2004 Thread starter #3 Nambiti MIS Apr 19, 2004 10 GB Thanks Madawc. Just the job. 8.5 is my version. I'll rememember to mention it next time. Upvote 0 Downvote