Sep 10, 2009 #1 bv0719 MIS Dec 19, 2002 131 US Hello... Have a weight field where the output is (example: 204.34) Want the output to be 20434. How do I remove the decimal? Would it be a formula in the format field>customize>decimal separator? Thanks, BV
Hello... Have a weight field where the output is (example: 204.34) Want the output to be 20434. How do I remove the decimal? Would it be a formula in the format field>customize>decimal separator? Thanks, BV
Sep 10, 2009 2 #2 CoSpringsGuy IS-IT--Management Aug 9, 2007 955 US totext({@number1}*100,0,"") _____________________________________ Crystal Reports XI Developer Version Intersystems Cache 5.X ODBC connection Upvote 0 Downvote
totext({@number1}*100,0,"") _____________________________________ Crystal Reports XI Developer Version Intersystems Cache 5.X ODBC connection
Sep 10, 2009 Thread starter #3 bv0719 MIS Dec 19, 2002 131 US Perfect... Thank You! Upvote 0 Downvote
Sep 10, 2009 #4 ImArchimedes Technical User Sep 25, 2007 62 Just for a little more insight into how that works, if you are interested, here is the function format: totext(variable,x,y) x = The number of decimal places to carry over when converting to text (1=.0 and 5=.00000) y = Character to be used to separate tens, hundreds, thousands (like the comma in "1,000") Upvote 0 Downvote
Just for a little more insight into how that works, if you are interested, here is the function format: totext(variable,x,y) x = The number of decimal places to carry over when converting to text (1=.0 and 5=.00000) y = Character to be used to separate tens, hundreds, thousands (like the comma in "1,000")
Sep 10, 2009 Thread starter #5 bv0719 MIS Dec 19, 2002 131 US Appreciate the insight. Thanks! BV Upvote 0 Downvote