home *** CD-ROM | disk | FTP | other *** search
/ Big Blue Disk 43 / bbd43.zip / PCFUNREF.TXT < prev    next >
Text File  |  1990-03-19  |  4KB  |  61 lines

  1. |A╔═══════════════╗══════════════════════════════════════════════╔═══════════════╗
  2. |A║ |6Personal Calc|A ║══════════ ^1Function Reference Sheet |A══════════║ |6Personal Calc|A ║
  3. |A╚═══════════════╝══════════════════════════════════════════════╚═══════════════╝
  4. ^Cby
  5. ^CDoug Harrison
  6.  
  7.        * Arithmetic *                          * Financial *
  8.  
  9.   DIV(numerator, denominator)  integer      PV(rate, # periods, pmt, future
  10.       result of division                       value, type)  present value
  11.  MOD(numerator, denominator)  remainder    FV(rate, # periods, pmt, present
  12.      of division (modulus)                     value, type)  future value
  13.  ABS(expr)  absolute value                 NPER(rate, payment, present value,
  14.       * Exponential *                           future value, type)  # periods
  15.  LN(expr)  natural log (base e)            PMT(rate, # periods, present val,
  16.  LOG(expr)  log base 10                        future val, type) payment
  17.  EXP(expr)  e to a power                   RATE(# periods, pmt., present val,
  18.  POW(expr1,expr2)  expr1 to expr2 power         future val, type, guess) rate
  19.  SQR(expr)  square                                 * Lookup *
  20.  SQRT(expr)  square root                   INDEX(row index, col index, range)
  21.       * Trigonometric *                    VLOOKUP(lookup, col index,range)
  22.  SIN(angle)  sine                          HLOOKUP(lookup, row index, range)
  23.  COS(angle)  cosine                        CHOOSE(index, expr1, expr2,...)
  24.  TAN(angle)  tangent                       LOOKUP(lookup value, lookup range,
  25.  ASIN(expr)  arc sine                             results range)
  26.  ACOS(expr)  arc cosine                    MATCH(lookup value, range, type)
  27.  ATAN(expr)  arc tangent                          * Date/Time *
  28.  ATAN2(x-expr,y-expr)  4-quad arc tan      DATE(year, month, day) yields date
  29.  RAD(angle degrees)  degrees to radians          number (integer)
  30.  DEG(angle radians)  radians to degrees    YEAR(expr)  year of date number
  31.  PI() pi                                   MONTH(expr)  month of date number
  32.     * Logical *                            DAY(expr)  day of date number
  33.  = <> < <= > >=  logical operators         WEEKDAY(expr)  day of week of date
  34.  IF(condition, action, alternate                   number (1=Sun)
  35.     action)  if-then-else                  ISLEAP(expr)  1 if leap year
  36.  AND(expr1, expr2, expr3,...)  AND         DAYSMONTH(month, year)  days in mo.
  37.  OR(expr1, expr2, expr3,...)  OR           TIME(hours, minutes, seconds)  time
  38.  NOT(expr)  NOT                                 number (fraction)
  39.  TRUE()  1                                 HOUR(expr)  hour of time number
  40.  FALSE()  0                                MINUTE(expr)  minute of time number
  41.     * Statistical *                        SECOND(expr)  second of time number
  42.  SUM(expr list)  sum                       NOW()  current date and time
  43.  PROD(expr list)  product                             * Cell *
  44.  MEAN(expr list)  mean                     ROW(cell ref)  row number
  45.  MEDIAN(expr list)  median                 COLUMN(cell ref)  column number
  46.  VAR(expr list)  sample variance                      * Range *
  47.  VARP(expr list)  population variance      ROWS(range)  no. of rows in range
  48.  SDEV(expr list)  sample std. deviation    COLUMNS(range)  no. of columns in 
  49.  SDEVP(expr list)  population std.                 range
  50.        deviation                                    * Miscellaneous *
  51.  SERR(expr list)  std. deviation of        ISERR(expr list)  1 if error
  52.       mean (the std. error)                ISNA(expr list)  1 if NA
  53.  MAX(expr list)  maximum                   ISEMPTY(list of cells or ranges)  1
  54.  MIN(expr list)  minimum                           if all cells are empty
  55.  COUNT(expr list)  count cells             ERROR()  set error condition on
  56.        containing values                   ROUND(expr, place)  round
  57.  RAND(lower bound, upper bound)  random    TRUNC(expr, place)  truncate
  58.       number                               INT(expr)  integer portion
  59.                                            FRAC(expr)  fractional portion
  60.  
  61.