C Chineham Registered User. Local time Today, 16:15 Joined Apr 10, 2002 Messages 21 Apr 11, 2002 #1 Can somebody please explain to me the ABS function, how it works and how it should be used?
B bleakcabal Registered User. Local time Today, 16:15 Joined Mar 19, 2002 Messages 12 Apr 11, 2002 #2 The ABS function returns the absolute value of a number, this is simply the number without a minus sign if there was one. For exemple : Before After 1 1 12 12 -34 34 -23 23 It has limited uses.
The ABS function returns the absolute value of a number, this is simply the number without a minus sign if there was one. For exemple : Before After 1 1 12 12 -34 34 -23 23 It has limited uses.
C Chineham Registered User. Local time Today, 16:15 Joined Apr 10, 2002 Messages 21 Apr 15, 2002 #3 Sorted!!