home *** CD-ROM | disk | FTP | other *** search
/ Computer Based Training: …, Windows 95 & NT Basics / a1454501.iso / mo97w03 / AW03FT.TXT < prev    next >
Encoding:
Text File  |  1997-04-11  |  2.0 KB  |  79 lines

  1. The mathematical operators that may be used with bookmarks in formulas are
  2.  
  3. ò + (add)
  4.  
  5. ò - (subtract)
  6.  
  7. ò * (multiply)
  8.  
  9. ò / (divide)
  10.  
  11. ò %004^ (powers and roots)
  12.  
  13. ò < (less than)
  14.  
  15. ò <= (less than or equal to)
  16.  
  17. ò > (greater than)
  18.  
  19. ò >= (greater than or equal to)
  20.  
  21. ò () (parenthetical)
  22.  
  23. ò Abs (absolute value)
  24.  
  25. ò Int (integer)
  26.  
  27. ò Sign (Sign)
  28.  
  29. ò Define (test for error)
  30.  
  31. ò Mod (modulus)
  32.  
  33. ò Round (round)
  34.  
  35. ò And (and)
  36.  
  37. ò Or (or)
  38.  
  39. ò Not (not)
  40. @@ 2
  41. Word 97 allows the use of the following functions in formulas:
  42.  
  43. ABS(x) - returns the positive value of a number or formula regardless of its actual positive or negative value
  44.  
  45. AND(x,y) - returns the value 1 if the logical expressions x and y are both true, or the value 0 if either expression is false
  46.  
  47. AVERAGE() - returns the average of a list of values
  48.  
  49. COUNT() - returns the number of items in a list
  50.  
  51. DEFINED(x) - returns the value 1 if the expression x is valid or the value 0 if the expression cannot be computed
  52.  
  53. FALSE - returns the value 0
  54.  
  55. IF(x,y,z) - returns the result y if the conditional expression x is true or the result z if it is false. Both y and z can be a numeric value or the words "True" and "False"
  56.  
  57. INT(x) - returns only the integers in the value or formula x
  58.  
  59. MIN() - returns the lowest value in a list
  60.  
  61. MAX() - returns the highest value in a list
  62.  
  63. MOD(x,y) - returns the remainder from dividing x by y a whole number of times
  64.  
  65. NOT(x) - returns the value 0 if the logical expression x is true or the value 1 if it is false
  66.  
  67. OR(x,y) - returns the value 1 if either or both logical expressions x and y are true, or the value 0 if both are false
  68.  
  69. PRODUCT() - returns the result of multiplying a list of values
  70.  
  71. ROUND(x,y) - returns the value of x rounded to y decimal places; x can be a number or the result of a formula
  72.  
  73. SIGN(x) - returns the value 1 if x is a positive value, or -1 if x is a negative value
  74.  
  75. SUM() - returns the sum of a list of values or formulas
  76.  
  77. TRUE - returns the value 1
  78.  
  79.