Jun 1, 2006 #1 PJOL IS-IT--Management Oct 11, 2005 28 IE I need to work with the absolute vale of a number in our formula. numbervar sub7:=({UD_SP_BOX_COUNT.Customer} - {@sub6}) Whether {@sub6} has a negative or positive value, I want the absolute value to be used in the formula. Any help appreciated.
I need to work with the absolute vale of a number in our formula. numbervar sub7:=({UD_SP_BOX_COUNT.Customer} - {@sub6}) Whether {@sub6} has a negative or positive value, I want the absolute value to be used in the formula. Any help appreciated.
Jun 1, 2006 #2 lbass Technical User Feb 9, 2002 32,816 US Use: numbervar sub7:=({UD_SP_BOX_COUNT.Customer} - abs({@sub6})) -LB Upvote 0 Downvote