Sep 12, 2005 #1 OLTU Technical User Feb 14, 2005 39 NL Hi , Using version crystal 8.5. Need help to round up the values like below, 0.2 should be 1 0.5 should be 1 0.8 should be 1 1.1 should be 2 1.9 should be 2 2.1 should be 3 etc. thx
Hi , Using version crystal 8.5. Need help to round up the values like below, 0.2 should be 1 0.5 should be 1 0.8 should be 1 1.1 should be 2 1.9 should be 2 2.1 should be 3 etc. thx
Sep 12, 2005 #2 lupins46 MIS Feb 19, 2004 2,509 GB Can't remember what functions are available in v8.5. Do you have: RoundUp({mytable.myvalue}) Ceiling({mytable.myvalue}) (for +ve nos) If not then fix({mytable.myvalue}+ 0.999) (for +ve nos) Upvote 0 Downvote
Can't remember what functions are available in v8.5. Do you have: RoundUp({mytable.myvalue}) Ceiling({mytable.myvalue}) (for +ve nos) If not then fix({mytable.myvalue}+ 0.999) (for +ve nos)
Sep 12, 2005 1 #3 lbass Technical User Feb 9, 2002 32,818 US Try: -int(-{table.amt}) -LB Upvote 0 Downvote
Sep 12, 2005 Thread starter #4 OLTU Technical User Feb 14, 2005 39 NL Ibass, What dou you exactly mean with -int(-{table.amt})? I want to roundup my @formula records. Thx Upvote 0 Downvote
Sep 12, 2005 #5 lbass Technical User Feb 9, 2002 32,818 US Create a formula: -int(-{@yourformula}) -LB Upvote 0 Downvote
Sep 12, 2005 Thread starter #6 OLTU Technical User Feb 14, 2005 39 NL it works perfect !!! thx Upvote 0 Downvote