[gnumeric] Docs: brings things closer to distchecking.



commit 07f7c14af66ad45b6f3dc593383f2b71875f4706
Author: Morten Welinder <terra gnome org>
Date:   Sun Aug 30 16:53:23 2009 -0400

    Docs: brings things closer to distchecking.

 doc/C/func.defs                  | 1553 ++++++++++++++---
 doc/C/functions.xml              | 3569 ++++++++++++++++++++++++++++++++++----
 doc/make-func-list.pl            |   13 +-
 plugins/fn-complex/functions.c   |    4 +-
 plugins/fn-derivatives/options.c |    2 -
 plugins/fn-info/functions.c      |    4 +
 plugins/fn-math/functions.c      |   12 +-
 plugins/fn-stat/functions.c      |    1 +
 plugins/fn-string/functions.c    |    1 +
 src/func.c                       |   31 +-
 10 files changed, 4635 insertions(+), 555 deletions(-)
---
diff --git a/doc/C/func.defs b/doc/C/func.defs
index 915d4bc..3e2d1a3 100644
--- a/doc/C/func.defs
+++ b/doc/C/func.defs
@@ -4,6 +4,7 @@
 @DESCRIPTION=BITAND returns the bitwise and of the binary representations of its arguments.
 @{a}: non-negative integer
 @{b}: non-negative integer
+
 @SEEALSO=BITOR,BITXOR
 
 @CATEGORY=Bitwise Operations
@@ -12,6 +13,8 @@
 @DESCRIPTION=BITLSHIFT returns the binary representations of @{a} shifted @{n} positions to the left.
 @{a}: non-negative integer
 @{n}: integer
+
+ NOTE=If @{n} is negative, BITLSHIFT shifts the bits to the right by ABS(@{n}) positions.
 @SEEALSO=BITRSHIFT
 
 @CATEGORY=Bitwise Operations
@@ -20,6 +23,7 @@
 @DESCRIPTION=BITOR returns the bitwise or of the binary representations of its arguments.
 @{a}: non-negative integer
 @{b}: non-negative integer
+
 @SEEALSO=BITXOR,BITAND
 
 @CATEGORY=Bitwise Operations
@@ -28,6 +32,8 @@
 @DESCRIPTION=BITRSHIFT returns the binary representations of @{a} shifted @{n} positions to the right.
 @{a}: non-negative integer
 @{n}: integer
+
+ NOTE=If @{n} is negative, BITRSHIFT shifts the bits to the left by ABS(@{n}) positions.
 @SEEALSO=BITLSHIFT
 
 @CATEGORY=Bitwise Operations
@@ -36,17 +42,32 @@
 @DESCRIPTION=BITXOR returns the bitwise exclusive or of the binary representations of its arguments.
 @{a}: non-negative integer
 @{b}: non-negative integer
+
 @SEEALSO=BITOR,BITAND
 
 @CATEGORY=Complex
 @FUNCTION=COMPLEX
+ SYNTAX=COMPLEX(x,y,i)
+ DESCRIPTION= 
+ {x}: real part
+ {y}: imaginary part
+ {i}: the suffix for the complex number, either "i" or "j"; defaults to "i".
+ NOTE=If @{i} is neither "i" nor "j", COMPLEX returns #VALUE!
 
 @CATEGORY=Complex
 @FUNCTION=IMABS
+ SYNTAX=IMABS(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMAGINARY,IMREAL
 
 @CATEGORY=Complex
 @FUNCTION=IMAGINARY
+ SYNTAX=IMAGINARY(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMREAL
 
 @CATEGORY=Complex
@@ -54,6 +75,8 @@
 @SYNTAX=IMARCCOS(z)
 @DESCRIPTION=IMARCCOS returns the complex arccosine of the complex number @{z}. The branch cuts are on the real axis, less than -1 and greater than 1.
 @{z}: a complex number
+
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMARCSIN,IMARCTAN
 
 @CATEGORY=Complex
@@ -61,30 +84,56 @@
 @SYNTAX=IMARCCOSH(z)
 @DESCRIPTION=IMARCCOSH returns the complex hyperbolic arccosine of the complex number @{z}. The branch cut is on the real axis, less than 1.
 @{z}: a complex number
+
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMARCSINH,IMARCTANH
 
 @CATEGORY=Complex
 @FUNCTION=IMARCCOT
+ SYNTAX=IMARCCOT(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMARCSEC,IMARCCSC
 
 @CATEGORY=Complex
 @FUNCTION=IMARCCOTH
+ SYNTAX=IMARCCOTH(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMARCSECH,IMARCCSCH
 
 @CATEGORY=Complex
 @FUNCTION=IMARCCSC
+ SYNTAX=IMARCCSC(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMARCSEC,IMARCCOT
 
 @CATEGORY=Complex
 @FUNCTION=IMARCCSCH
+ SYNTAX=IMARCCSCH(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMARCSECH,IMARCCOTH
 
 @CATEGORY=Complex
 @FUNCTION=IMARCSEC
+ SYNTAX=IMARCSEC(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMARCCSC,IMARCCOT
 
 @CATEGORY=Complex
 @FUNCTION=IMARCSECH
+ SYNTAX=IMARCSECH(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMARCCSCH,IMARCCOTH
 
 @CATEGORY=Complex
@@ -92,6 +141,8 @@
 @SYNTAX=IMARCSIN(z)
 @DESCRIPTION=IMARCSIN returns the complex arcsine of the complex number @{z}. The branch cuts are on the real axis, less than -1 and greater than 1.
 @{z}: a complex number
+
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMARCCOS,IMARCTAN
 
 @CATEGORY=Complex
@@ -99,6 +150,8 @@
 @SYNTAX=IMARCSINH(z)
 @DESCRIPTION=IMARCSINH returns the complex hyperbolic arcsine of the complex number @{z}.  The branch cuts are on the imaginary axis, below -i and above i.
 @{z}: a complex number
+
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMARCCOSH,IMARCTANH
 
 @CATEGORY=Complex
@@ -106,6 +159,8 @@
 @SYNTAX=IMARCTAN(z)
 @DESCRIPTION=IMARCTAN returns the complex arctangent of the complex number @{z}. The branch cuts are on the imaginary axis, below -i and above i.
 @{z}: a complex number
+
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMARCSIN,IMARCCOS
 
 @CATEGORY=Complex
@@ -113,6 +168,8 @@
 @SYNTAX=IMARCTANH(z)
 @DESCRIPTION=IMARCTANH returns the complex hyperbolic arctangent of the complex number @{z}. The branch cuts are on the real axis, less than -1 and greater than 1.
 @{z}: a complex number
+
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMARCSINH,IMARCCOSH
 
 @CATEGORY=Complex
@@ -121,16 +178,30 @@
 @DESCRIPTION=The argument theta of a complex number is its angle in radians from the real axis.
 @{z}: a complex number
 
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
+
 @CATEGORY=Complex
 @FUNCTION=IMCONJUGATE
+ SYNTAX=IMCONJUGATE(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMAGINARY,IMREAL
 
 @CATEGORY=Complex
 @FUNCTION=IMCOS
+ SYNTAX=IMCOS(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMSIN,IMTAN
 
 @CATEGORY=Complex
 @FUNCTION=IMCOSH
+ SYNTAX=IMCOSH(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMSINH,IMTANH
 
 @CATEGORY=Complex
@@ -138,10 +209,16 @@
 @SYNTAX=IMCOT(z)
 @DESCRIPTION=cotz = cosz/sinz.
 @{z}: a complex number
+
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMSEC,IMCSC
 
 @CATEGORY=Complex
 @FUNCTION=IMCOTH
+ SYNTAX=IMCOTH(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMSECH,IMCSCH
 
 @CATEGORY=Complex
@@ -149,22 +226,41 @@
 @SYNTAX=IMCSC(z)
 @DESCRIPTION=cscz = 1/sinz.
 @{z}: a complex number
+
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMSEC,IMCOT
 
 @CATEGORY=Complex
 @FUNCTION=IMCSCH
+ SYNTAX=IMCSCH(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMSECH,IMCOTH
 
 @CATEGORY=Complex
 @FUNCTION=IMDIV
+ SYNTAX=IMDIV(z1,z2)
+ DESCRIPTION= 
+ {z1}: a complex number
+ {z2}: a complex number
+ NOTE=If @{z1} or @{z2} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMPRODUCT
 
 @CATEGORY=Complex
 @FUNCTION=IMEXP
+ SYNTAX=IMEXP(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMLN
 
 @CATEGORY=Complex
 @FUNCTION=IMINV
+ SYNTAX=IMINV(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 
 @CATEGORY=Complex
 @FUNCTION=IMLN
@@ -172,29 +268,57 @@
 @DESCRIPTION=The result will have an imaginary part between -Ï? and +Ï?.
 The natural logarithm is not uniquely defined on complex numbers. You may need to add or subtract an even multiple of Ï? to the imaginary part.
 @{z}: a complex number
+
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMEXP,IMLOG2,IMLOG10
 
 @CATEGORY=Complex
 @FUNCTION=IMLOG10
+ SYNTAX=IMLOG10(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMLN,IMLOG2
 
 @CATEGORY=Complex
 @FUNCTION=IMLOG2
+ SYNTAX=IMLOG2(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMLN,IMLOG10
 
 @CATEGORY=Complex
 @FUNCTION=IMNEG
+ SYNTAX=IMNEG(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 
 @CATEGORY=Complex
 @FUNCTION=IMPOWER
+ SYNTAX=IMPOWER(z1,z2)
+ DESCRIPTION= 
+ {z1}: a complex number
+ {z2}: a complex number
+ NOTE=If @{z1} or @{z2} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMSQRT
 
 @CATEGORY=Complex
 @FUNCTION=IMPRODUCT
+ SYNTAX=IMPRODUCT(z1,z2)
+ DESCRIPTION= 
+ {z1}: a complex number
+ {z2}: a complex number
+ NOTE=If any of @{z1}, @{z2},... is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMDIV
 
 @CATEGORY=Complex
 @FUNCTION=IMREAL
+ SYNTAX=IMREAL(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMAGINARY
 
 @CATEGORY=Complex
@@ -202,38 +326,74 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @SYNTAX=IMSEC(z)
 @DESCRIPTION=secz = 1/cosz.
 @{z}: a complex number
+
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMCSC,IMCOT
 
 @CATEGORY=Complex
 @FUNCTION=IMSECH
+ SYNTAX=IMSECH(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMCSCH,IMCOTH
 
 @CATEGORY=Complex
 @FUNCTION=IMSIN
+ SYNTAX=IMSIN(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMCOS,IMTAN
 
 @CATEGORY=Complex
 @FUNCTION=IMSINH
+ SYNTAX=IMSINH(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMCOSH,IMTANH
 
 @CATEGORY=Complex
 @FUNCTION=IMSQRT
+ SYNTAX=IMSQRT(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMPOWER
 
 @CATEGORY=Complex
 @FUNCTION=IMSUB
+ SYNTAX=IMSUB(z1,z2)
+ DESCRIPTION= 
+ {z1}: a complex number
+ {z2}: a complex number
+ NOTE=If @{z1} or @{z2} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMSUM
 
 @CATEGORY=Complex
 @FUNCTION=IMSUM
+ SYNTAX=IMSUM(z1,z2)
+ DESCRIPTION= 
+ {z1}: a complex number
+ {z2}: a complex number
+ NOTE=If any of @{z1}, @{z2},... is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMSUB
 
 @CATEGORY=Complex
 @FUNCTION=IMTAN
+ SYNTAX=IMTAN(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMSIN,IMCOS
 
 @CATEGORY=Complex
 @FUNCTION=IMTANH
+ SYNTAX=IMTANH(z)
+ DESCRIPTION= 
+ {z}: a complex number
+ NOTE=If @{z} is not a valid complex number, #VALUE! is returned.
 @SEEALSO=IMSINH,IMCOSH
 
 @CATEGORY=Database
@@ -243,16 +403,9 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{database}: a range in which rows of related information are records and columns of data are fields
 @{field}: a string or integer specifying which field is to be used
 @{criteria}: a range containing conditions
- SYNTAX=DAVERAGE(database,field,criteria))
+
 @DESCRIPTION= {field} is a string or integer specifying whichfield is to be used. If @{field} is an integer nthen the nth column will be used. If @{field} is a string, then the column with the matching label will be used.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
- SYNTAX=DAVERAGE(database,field,criteria)))
 @DESCRIPTION= {criteria} is a range containing conditions. The first row of a @{criteria} should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as ">3" or "<9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of @{criteria}.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
 @SEEALSO=DCOUNT
 
 @CATEGORY=Database
@@ -262,16 +415,9 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{database}: a range in which rows of related information are records and columns of data are fields
 @{field}: a string or integer specifying which field is to be used
 @{criteria}: a range containing conditions
- SYNTAX=DCOUNT(database,field,criteria))
+
 @DESCRIPTION= {field} is a string or integer specifying whichfield is to be used. If @{field} is an integer nthen the nth column will be used. If @{field} is a string, then the column with the matching label will be used.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
- SYNTAX=DCOUNT(database,field,criteria)))
 @DESCRIPTION= {criteria} is a range containing conditions. The first row of a @{criteria} should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as ">3" or "<9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of @{criteria}.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
 @SEEALSO=DAVERAGE,DCOUNTA
 
 @CATEGORY=Database
@@ -281,16 +427,9 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{database}: a range in which rows of related information are records and columns of data are fields
 @{field}: a string or integer specifying which field is to be used
 @{criteria}: a range containing conditions
- SYNTAX=DCOUNTA(database,field,criteria))
+
 @DESCRIPTION= {field} is a string or integer specifying whichfield is to be used. If @{field} is an integer nthen the nth column will be used. If @{field} is a string, then the column with the matching label will be used.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
- SYNTAX=DCOUNTA(database,field,criteria)))
 @DESCRIPTION= {criteria} is a range containing conditions. The first row of a @{criteria} should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as ">3" or "<9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of @{criteria}.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
 @SEEALSO=DCOUNT
 
 @CATEGORY=Database
@@ -300,16 +439,11 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{database}: a range in which rows of related information are records and columns of data are fields
 @{field}: a string or integer specifying which field is to be used
 @{criteria}: a range containing conditions
- SYNTAX=DGET(database,field,criteria))
+
 @DESCRIPTION= {field} is a string or integer specifying whichfield is to be used. If @{field} is an integer nthen the nth column will be used. If @{field} is a string, then the column with the matching label will be used.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
- SYNTAX=DGET(database,field,criteria)))
 @DESCRIPTION= {criteria} is a range containing conditions. The first row of a @{criteria} should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as ">3" or "<9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of @{criteria}.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
+ NOTE=If none of the records match the conditions, DGET returns #VALUE!
+ NOTE=If more than one record match the conditions, DGET returns #NUM!
 @SEEALSO=DCOUNT
 
 @CATEGORY=Database
@@ -319,16 +453,9 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{database}: a range in which rows of related information are records and columns of data are fields
 @{field}: a string or integer specifying which field is to be used
 @{criteria}: a range containing conditions
- SYNTAX=DMAX(database,field,criteria))
+
 @DESCRIPTION= {field} is a string or integer specifying whichfield is to be used. If @{field} is an integer nthen the nth column will be used. If @{field} is a string, then the column with the matching label will be used.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
- SYNTAX=DMAX(database,field,criteria)))
 @DESCRIPTION= {criteria} is a range containing conditions. The first row of a @{criteria} should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as ">3" or "<9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of @{criteria}.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
 @SEEALSO=DMIN
 
 @CATEGORY=Database
@@ -338,16 +465,9 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{database}: a range in which rows of related information are records and columns of data are fields
 @{field}: a string or integer specifying which field is to be used
 @{criteria}: a range containing conditions
- SYNTAX=DMIN(database,field,criteria))
+
 @DESCRIPTION= {field} is a string or integer specifying whichfield is to be used. If @{field} is an integer nthen the nth column will be used. If @{field} is a string, then the column with the matching label will be used.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
- SYNTAX=DMIN(database,field,criteria)))
 @DESCRIPTION= {criteria} is a range containing conditions. The first row of a @{criteria} should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as ">3" or "<9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of @{criteria}.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
 @SEEALSO=DCOUNT
 
 @CATEGORY=Database
@@ -357,16 +477,9 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{database}: a range in which rows of related information are records and columns of data are fields
 @{field}: a string or integer specifying which field is to be used
 @{criteria}: a range containing conditions
- SYNTAX=DPRODUCT(database,field,criteria))
+
 @DESCRIPTION= {field} is a string or integer specifying whichfield is to be used. If @{field} is an integer nthen the nth column will be used. If @{field} is a string, then the column with the matching label will be used.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
- SYNTAX=DPRODUCT(database,field,criteria)))
 @DESCRIPTION= {criteria} is a range containing conditions. The first row of a @{criteria} should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as ">3" or "<9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of @{criteria}.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
 @SEEALSO=DSUM
 
 @CATEGORY=Database
@@ -376,16 +489,9 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{database}: a range in which rows of related information are records and columns of data are fields
 @{field}: a string or integer specifying which field is to be used
 @{criteria}: a range containing conditions
- SYNTAX=DSTDEV(database,field,criteria))
+
 @DESCRIPTION= {field} is a string or integer specifying whichfield is to be used. If @{field} is an integer nthen the nth column will be used. If @{field} is a string, then the column with the matching label will be used.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
- SYNTAX=DSTDEV(database,field,criteria)))
 @DESCRIPTION= {criteria} is a range containing conditions. The first row of a @{criteria} should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as ">3" or "<9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of @{criteria}.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
 @SEEALSO=DSTDEVP
 
 @CATEGORY=Database
@@ -395,16 +501,9 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{database}: a range in which rows of related information are records and columns of data are fields
 @{field}: a string or integer specifying which field is to be used
 @{criteria}: a range containing conditions
- SYNTAX=DSTDEVP(database,field,criteria))
+
 @DESCRIPTION= {field} is a string or integer specifying whichfield is to be used. If @{field} is an integer nthen the nth column will be used. If @{field} is a string, then the column with the matching label will be used.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
- SYNTAX=DSTDEVP(database,field,criteria)))
 @DESCRIPTION= {criteria} is a range containing conditions. The first row of a @{criteria} should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as ">3" or "<9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of @{criteria}.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
 @SEEALSO=DSTDEV
 
 @CATEGORY=Database
@@ -414,16 +513,9 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{database}: a range in which rows of related information are records and columns of data are fields
 @{field}: a string or integer specifying which field is to be used
 @{criteria}: a range containing conditions
- SYNTAX=DSUM(database,field,criteria))
+
 @DESCRIPTION= {field} is a string or integer specifying whichfield is to be used. If @{field} is an integer nthen the nth column will be used. If @{field} is a string, then the column with the matching label will be used.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
- SYNTAX=DSUM(database,field,criteria)))
 @DESCRIPTION= {criteria} is a range containing conditions. The first row of a @{criteria} should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as ">3" or "<9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of @{criteria}.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
 @SEEALSO=DPRODUCT
 
 @CATEGORY=Database
@@ -433,16 +525,9 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{database}: a range in which rows of related information are records and columns of data are fields
 @{field}: a string or integer specifying which field is to be used
 @{criteria}: a range containing conditions
- SYNTAX=DVAR(database,field,criteria))
+
 @DESCRIPTION= {field} is a string or integer specifying whichfield is to be used. If @{field} is an integer nthen the nth column will be used. If @{field} is a string, then the column with the matching label will be used.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
- SYNTAX=DVAR(database,field,criteria)))
 @DESCRIPTION= {criteria} is a range containing conditions. The first row of a @{criteria} should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as ">3" or "<9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of @{criteria}.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
 @SEEALSO=DVARP
 
 @CATEGORY=Database
@@ -452,20 +537,18 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{database}: a range in which rows of related information are records and columns of data are fields
 @{field}: a string or integer specifying which field is to be used
 @{criteria}: a range containing conditions
- SYNTAX=DVARP(database,field,criteria))
+
 @DESCRIPTION= {field} is a string or integer specifying whichfield is to be used. If @{field} is an integer nthen the nth column will be used. If @{field} is a string, then the column with the matching label will be used.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
- SYNTAX=DVARP(database,field,criteria)))
 @DESCRIPTION= {criteria} is a range containing conditions. The first row of a @{criteria} should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as ">3" or "<9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of @{criteria}.
- {database}: a range in which rows of related information are records and columns of data are fields
- {field}: a string or integer specifying which field is to be used
- {criteria}: a range containing conditions
 @SEEALSO=DVAR
 
 @CATEGORY=Database
 @FUNCTION=GETPIVOTDATA
+ SYNTAX=GETPIVOTDATA(pivot_table,field_name)
+ DESCRIPTION= 
+ {pivot_table}: cell range containing the pivot table
+ {field_name}: name of the field for which the summary data is requested
+ NOTE=If the summary data is unavailable, GETPIVOTDATA returns #REF!
 
 @CATEGORY=Date/Time
 @FUNCTION=DATE
@@ -474,6 +557,9 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{year}: year of date
 @{month}: month of year
 @{day}: day of month
+
+ NOTE=If @{month} or @{day} is less than 1 or too big, then the year and/or month will be adjusted.
+ NOTE=For spreadsheets created with the Mac version of Excel, serial 1 is 1-Jan-1904.
 @SEEALSO=TODAY,YEAR,MONTH,DAY
 
 @CATEGORY=Date/Time
@@ -481,6 +567,7 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @SYNTAX=DATE2UNIX(d)
 @DESCRIPTION=The DATE2UNIX function translates a date serial values into a Unix timestamp.
 @{d}: date serial value
+
 @SEEALSO=UNIX2DATE,DATE
 
 @CATEGORY=Date/Time
@@ -490,6 +577,10 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{start_date}: starting date serial value
 @{end_date}: ending date serial value
 @{interval}: counting unit
+
+ NOTE=If @{interval} is "y", "m", or "d" then the distance is measured in complete years, months, or days respectively.
+ NOTE=If @{interval} is "ym" or "yd" then the distance is measured in complete months or days, respectively, but excluding any difference in years.
+ NOTE=If @{interval} is "md" then the distance is measured in complete days but excluding any difference in months.
 @SEEALSO=DAYS360
 
 @CATEGORY=Date/Time
@@ -497,6 +588,7 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @SYNTAX=DATEVALUE(serial)
 @DESCRIPTION=DATEVALUE returns the date serial value part of a date and time serial value.
 @{serial}: date and time serial value
+
 @SEEALSO=TIMEVALUE,DATE
 
 @CATEGORY=Date/Time
@@ -504,6 +596,7 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @SYNTAX=DAY(date)
 @DESCRIPTION=The DAY function returns the day-of-month part of @{date}.
 @{date}: date serial value
+
 @SEEALSO=DATE,YEAR,MONTH
 
 @CATEGORY=Date/Time
@@ -513,6 +606,10 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{start_date}: starting date serial value
 @{end_date}: ending date serial value
 @{method}: counting method
+
+ NOTE=If @{method} is 0, the default, the MS Excel (tm) US method will be used. This is a somewhat complicated industry standard method where the last day of February is considered to be the 30th day of the month, but only for @{start_date}.
+ NOTE=If @{method} is 1, the European method will be used.  In this case, if the day of the month is 31 it will be considered as 30
+ NOTE=If @{method} is 2, a saner version of the US method is used in which both dates get the same February treatment.
 @SEEALSO=DATEDIF
 
 @CATEGORY=Date/Time
@@ -521,6 +618,7 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @DESCRIPTION=EDATE returns @{date} moved forward or backward the number of months specified by @{months}.
 @{date}: date serial value
 @{months}: signed number of months
+
 @SEEALSO=DATE
 
 @CATEGORY=Date/Time
@@ -529,6 +627,7 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @DESCRIPTION=EOMONTH returns the date serial value of the end of the month specified by @{date} adjusted forward or backward the number of months specified by @{months}.
 @{date}: date serial value
 @{months}: signed number of months
+
 @SEEALSO=EDATE
 
 @CATEGORY=Date/Time
@@ -536,6 +635,7 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @SYNTAX=HOUR(time)
 @DESCRIPTION=The HOUR function computes the hour part of the fractional day given by @{time}.
 @{time}: time of day as fractional day.
+
 @SEEALSO=TIME,MINUTE,SECOND
 
 @CATEGORY=Date/Time
@@ -543,6 +643,8 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @SYNTAX=ISOWEEKNUM(date)
 @DESCRIPTION=ISOWEEKNUM calculates the week number according to the ISE 8601 standard.  Weeks start on Mondays and week 1 contains the first Thursday of the year.
 @{date}: date serial value
+
+ NOTE=January 1 of a year is sometimes in week 52 or 53 of the previous year.  Similarly, December 31 is sometimes in week 1 of the following year.
 @SEEALSO=ISOYEAR,WEEKNUM
 
 @CATEGORY=Date/Time
@@ -550,6 +652,8 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @SYNTAX=ISOYEAR(date)
 @DESCRIPTION=ISOYEAR calculates the year to go with week number according to the ISE 8601 standard.
 @{date}: date serial value
+
+ NOTE=January 1 of a year is sometimes in week 52 or 53 of the previous year.  Similarly, December 31 is sometimes in week 1 of the following year.
 @SEEALSO=ISOWEEKNUM,YEAR
 
 @CATEGORY=Date/Time
@@ -557,6 +661,7 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @SYNTAX=MINUTE(time)
 @DESCRIPTION=The MINUTE function computes the minute part of the fractional day given by @{time}.
 @{time}: time of day as fractional day.
+
 @SEEALSO=TIME,HOUR,SECOND
 
 @CATEGORY=Date/Time
@@ -564,6 +669,7 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @SYNTAX=MONTH(date)
 @DESCRIPTION=The MONTH function returns the month part of @{date}.
 @{date}: date serial value
+
 @SEEALSO=DATE,YEAR,DAY
 
 @CATEGORY=Date/Time
@@ -573,12 +679,14 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{start_date}: starting date serial value
 @{end_date}: ending date serial value
 @{holidays}: array of holidays
+
 @SEEALSO=WORKDAY
 
 @CATEGORY=Date/Time
 @FUNCTION=NOW
 @SYNTAX=NOW()
 @DESCRIPTION=The NOW function returns the date and time serial value of the moment it is computed.  Recomputing later will produce a different value.
+
 @SEEALSO=DATE
 
 @CATEGORY=Date/Time
@@ -586,6 +694,7 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @SYNTAX=SECOND(time)
 @DESCRIPTION=The SECOND function computes the seconds part of the fractional day given by @{time}.
 @{time}: time of day as fractional day.
+
 @SEEALSO=TIME,HOUR,MINUTE
 
 @CATEGORY=Date/Time
@@ -595,6 +704,7 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{hour}: hour of the day
 @{minute}: minute within the hour
 @{second}: second within the minute
+
 @SEEALSO=HOUR,MINUTE,SECOND
 
 @CATEGORY=Date/Time
@@ -602,12 +712,14 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @SYNTAX=TIMEVALUE(serial)
 @DESCRIPTION=TIMEVALUE returns the time-of-day part of a date and time serial value.
 @{serial}: date and time serial value
+
 @SEEALSO=DATEVALUE,TIME
 
 @CATEGORY=Date/Time
 @FUNCTION=TODAY
 @SYNTAX=TODAY()
 @DESCRIPTION=The TODAY function returns the date serial value of the day it is computed.  Recomputing on a later date will produce a different value.
+
 @SEEALSO=DATE
 
 @CATEGORY=Date/Time
@@ -615,6 +727,7 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @SYNTAX=UNIX2DATE(t)
 @DESCRIPTION=The UNIT2DATE function translates Unix timestamps into date serial values.  Unix timestamps are number of seconds since Midnight 1-Jan-1900.
 @{t}: Unix time stamp
+
 @SEEALSO=DATE2UNIX,DATE
 
 @CATEGORY=Date/Time
@@ -623,6 +736,10 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @DESCRIPTION=The WEEKDAY function returns the day-of-week of @{date}.  The value of @{method} determines how days are numbered.
 @{date}: date serial value
 @{method}: numbering system
+
+ NOTE=If @{method} is 1, then Sunday is 1, Monday is 2, etc.
+ NOTE=If @{method} is 2, then Monday is 1, Sunday is 2, etc.
+ NOTE=If @{method} is 3, then Monday is 0, Sunday is 1, etc.
 @SEEALSO=DATE,ISOWEEKNUM
 
 @CATEGORY=Date/Time
@@ -631,6 +748,10 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @DESCRIPTION=WEEKNUM calculates the week number according to @{method} which defaults to 1.
 @{date}: date serial value
 @{method}: numbering system
+
+ NOTE=If @{method} is 1, then weeks start on Sundays and days before first Sunday are in week 0.
+ NOTE=If @{method} is 2, then weeks start on Mondays and days before first Monday are in week 0.
+ NOTE=If @{method} is 150, then the ISO 8601 numbering is used.
 @SEEALSO=ISOWEEKNUM
 
 @CATEGORY=Date/Time
@@ -640,6 +761,8 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{date}: date serial value
 @{days}: number of days to add
 @{holidays}: array of holidays
+
+ NOTE=@{days} may be negative.
 @SEEALSO=NETWORKDAYS
 
 @CATEGORY=Date/Time
@@ -647,6 +770,7 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @SYNTAX=YEAR(date)
 @DESCRIPTION=The YEAR function returns the year part of @{date}.
 @{date}: date serial value
+
 @SEEALSO=DATE,MONTH,DAY
 
 @CATEGORY=Date/Time
@@ -656,6 +780,12 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{start_date}: starting date serial value
 @{end_date}: ending date serial value
 @{basis}: calendar basis
+
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=DATE
 
 @CATEGORY=Engineering
@@ -665,22 +795,43 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{n}: integer
 @{b}: base (2 â?¤ @{b} â?¤ 36)
 @{length}: minimum length of the resutling string
+
 @SEEALSO=DECIMAL
 
 @CATEGORY=Engineering
 @FUNCTION=BESSELI
+ SYNTAX=BESSELI(X,α)
+ DESCRIPTION= 
+ {X}: number
+ {α}: order (any number)
+ NOTE=If @{x} or @{α} are not numeric, #VALUE! is returned. If @{α} < 0, #NUM! is returned.
 @SEEALSO=BESSELJ,BESSELK,BESSELY
 
 @CATEGORY=Engineering
 @FUNCTION=BESSELJ
+ SYNTAX=BESSELJ(X,α)
+ DESCRIPTION= 
+ {X}: number
+ {α}: order (any non-negative integer)
+ NOTE=If @{x} or @{α} are not numeric, #VALUE! is returned. If @{α} < 0, #NUM! is returned. If @{α} is not an integer, it is truncated.
 @SEEALSO=BESSELI,BESSELK,BESSELY
 
 @CATEGORY=Engineering
 @FUNCTION=BESSELK
+ SYNTAX=BESSELK(X,α)
+ DESCRIPTION= 
+ {X}: number
+ {α}: order (any number)
+ NOTE=If @{x} or @{α} are not numeric, #VALUE! is returned. If @{α} < 0, #NUM! is returned.
 @SEEALSO=BESSELI,BESSELJ,BESSELY
 
 @CATEGORY=Engineering
 @FUNCTION=BESSELY
+ SYNTAX=BESSELY(X,α)
+ DESCRIPTION= 
+ {X}: number
+ {α}: order (any non-negative integer)
+ NOTE=If @{x} or @{α} are not numeric, #VALUE! is returned. If @{α} < 0, #NUM! is returned. If @{α} is not an integer, it is truncated.
 @SEEALSO=BESSELI,BESSELJ,BESSELK
 
 @CATEGORY=Engineering
@@ -693,6 +844,7 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @DESCRIPTION=If @{places} is given, BIN2HEX pads the result with zeros to achieve exactly @{places} digits. If this is not possible, BIN2HEX returns #NUM!
 @{x}: a binary number, either as a string or as a number involving only the digits 0 and 1
 @{places}: number of digits
+
 @SEEALSO=HEX2BIN,BIN2OCT,BIN2DEC
 
 @CATEGORY=Engineering
@@ -701,6 +853,7 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @DESCRIPTION=If @{places} is given, BIN2OCT pads the result with zeros to achieve exactly @{places} digits. If this is not possible, BIN2OCT returns #NUM!
 @{x}: a binary number, either as a string or as a number involving only the digits 0 and 1
 @{places}: number of digits
+
 @SEEALSO=OCT2BIN,BIN2DEC,BIN2HEX
 
 @CATEGORY=Engineering
@@ -710,7 +863,8 @@ The natural logarithm is not uniquely defined on complex numbers. You may need t
 @{x}: number
 @{from}: unit (string)
 @{to}: unit (string)
- SYNTAX=CONVERT(x,from,to))
+
+ NOTE=If @{from} and @{to} are different types, CONVERT returns #N/A!
 @DESCRIPTION= {from} and @{to} can be any of the following:
 
 Weight and mass:
@@ -802,9 +956,6 @@ For metric units any of the following prefixes can be used:
 	'a'  	atto  		1E-18
 	'z'  	zepto 		1E-21
 	'y'  	yocto 		1E-24
- {x}: number
- {from}: unit (string)
- {to}: unit (string)
 
 @CATEGORY=Engineering
 @FUNCTION=DEC2BIN
@@ -812,6 +963,7 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=If @{places} is given, DEC2BIN pads the result with zeros to achieve exactly @{places} digits. If this is not possible, DEC2BIN returns #NUM!
 @{x}: integer
 @{places}: number of digits
+
 @SEEALSO=BIN2DEC,DEC2OCT,DEC2HEX
 
 @CATEGORY=Engineering
@@ -820,6 +972,7 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=If @{places} is given, DEC2HEX pads the result with zeros to achieve exactly @{places} digits. If this is not possible, DEC2HEX returns #NUM!
 @{x}: integer
 @{places}: number of digits
+
 @SEEALSO=HEX2DEC,DEC2BIN,DEC2OCT
 
 @CATEGORY=Engineering
@@ -828,6 +981,7 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=If @{places} is given, DEC2OCT pads the result with zeros to achieve exactly @{places} digits. If this is not possible, DEC2OCT returns #NUM!
 @{x}: integer
 @{places}: number of digits
+
 @SEEALSO=OCT2DEC,DEC2BIN,DEC2HEX
 
 @CATEGORY=Engineering
@@ -840,6 +994,8 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=DELTA  returns 1 if  @{x1} = @{x0} and 0 otherwise.
 @{x0}: number
 @{x1}: number, defaults to 0
+
+ NOTE=If either argument is non-numeric, #VALUE! is returned.
 @SEEALSO=EXACT,GESTEP
 
 @CATEGORY=Engineering
@@ -848,6 +1004,7 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=ERF returns 2/sqrt(Ï?)* integral from @{lower} to @{upper} of exp(-t*t) dt
 @{lower}: lower limit of the integral, defaults to 0
 @{upper}: upper limit of the integral
+
 @SEEALSO=ERFC
 
 @CATEGORY=Engineering
@@ -855,6 +1012,7 @@ For metric units any of the following prefixes can be used:
 @SYNTAX=ERFC(x)
 @DESCRIPTION=ERFC returns 2/sqrt(Ï?)* integral from @{x} to â?? of exp(-t*t) dt
 @{x}: number
+
 @SEEALSO=ERF
 
 @CATEGORY=Engineering
@@ -863,6 +1021,8 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=GESTEP returns 1 if  @{x1} â?¤ @{x0} and 0 otherwise.
 @{x0}: number
 @{x1}: number, defaults to 0
+
+ NOTE=If either argument is non-numeric, #VALUE! is returned.
 @SEEALSO=DELTA
 
 @CATEGORY=Engineering
@@ -871,6 +1031,7 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=If @{places} is given, HEX2BIN pads the result with zeros to achieve exactly @{places} digits. If this is not possible, HEX2BIN returns #NUM!
 @{x}: a hexadecimal number, either as a string or as a number if no A to F are needed
 @{places}: number of digits
+
 @SEEALSO=BIN2HEX,HEX2OCT,HEX2DEC
 
 @CATEGORY=Engineering
@@ -883,14 +1044,18 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=If @{places} is given, HEX2OCT pads the result with zeros to achieve exactly @{places} digits. If this is not possible, HEX2OCT returns #NUM!
 @{x}: a hexadecimal number, either as a string or as a number if no A to F are needed
 @{places}: number of digits
+
 @SEEALSO=OCT2HEX,HEX2BIN,HEX2DEC
 
 @CATEGORY=Engineering
 @FUNCTION=INVSUMINV
 @SYNTAX=INVSUMINV(x0,x1)
- DESCRIPTION=INVSUMINV sum calculates the reciprocal (the inverse) of the sum of reciprovals (inverses) of all its arguments.
+ DESCRIPTION= 
 @{x0}: non-negative number
 @{x1}: non-negative number
+ NOTE=If any of the arguments is negative, #VALUE! is returned.
+If any argument is zero, the result is zero.
+ DESCRIPTION=INVSUMINV sum calculates the reciprocal (the inverse) of the sum of reciprovals (inverses) of all its arguments.
 @SEEALSO=HARMEAN
 
 @CATEGORY=Engineering
@@ -899,6 +1064,7 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=If @{places} is given, OCT2BIN pads the result with zeros to achieve exactly @{places} digits. If this is not possible, OCT2BIN returns #NUM!
 @{x}: a octal number, either as a string or as a number
 @{places}: number of digits
+
 @SEEALSO=BIN2OCT,OCT2DEC,OCT2HEX
 
 @CATEGORY=Engineering
@@ -911,6 +1077,7 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=If @{places} is given, OCT2HEX pads the result with zeros to achieve exactly @{places} digits. If this is not possible, OCT2HEX returns #NUM!
 @{x}: a octal number, either as a string or as a number
 @{places}: number of digits
+
 @SEEALSO=HEX2OCT,OCT2BIN,OCT2DEC
 
 @CATEGORY=Erlang
@@ -919,6 +1086,7 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=DIMCIRC returns the number of circuits required given @{traffic} calls with grade of service @{gos}.
 @{traffic}: number of calls
 @{gos}: grade of service
+
 @SEEALSO=OFFCAP,OFFTRAF,PROBBLOCK
 
 @CATEGORY=Erlang
@@ -927,6 +1095,7 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=OFFCAP returns the traffic capacity given @{circuits} circuits with grade of service @{gos}.
 @{circuits}: number of circuits
 @{gos}: grade of service
+
 @SEEALSO=DIMCIRC,OFFTRAF,PROBBLOCK
 
 @CATEGORY=Erlang
@@ -935,6 +1104,8 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=OFFTRAF returns the predicted number of offered calls given @{traffic} carried calls (taken from measurements) on @{circuits} circuits.
 @{traffic}: number of carried calls
 @{circuits}: number of circuits
+
+ NOTE=@{traffic} cannot exceed @{circuits}.
 @SEEALSO=PROBBLOCK,DIMCIRC,OFFCAP
 
 @CATEGORY=Erlang
@@ -943,6 +1114,8 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=PROBBLOCK returns probability of blocking when @{traffic} calls load into @{ccicuits} circuits.
 @{traffic}: number of calls
 @{circuits}: number of circuits
+
+ NOTE=@{traffic} cannot exceed @{circuits}.
 @SEEALSO=OFFTRAF,DIMCIRC,OFFCAP
 
 @CATEGORY=Finance
@@ -956,6 +1129,13 @@ For metric units any of the following prefixes can be used:
 @{par}: par value
 @{frequency}: number of interest payments per year
 @{basis}: calendar basis
+
+ NOTE=@{frequency} may be 1 (annual), 2 (semi-annual), or 4 (quarterly).
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=ACCRINTM
 
 @CATEGORY=Finance
@@ -967,6 +1147,13 @@ For metric units any of the following prefixes can be used:
 @{rate}: nominal annual interest rate
 @{par}: par value
 @{basis}: calendar basis
+
+ NOTE=@{par} defaults to $1000.
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=ACCRINT
 
 @CATEGORY=Finance
@@ -980,6 +1167,13 @@ For metric units any of the following prefixes can be used:
 @{period}: subject period
 @{rate}: depreciation rate
 @{basis}: calendar basis
+
+ NOTE=Named for AMORtissement DEGRessif Comptabilite.
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=AMORLINC
 
 @CATEGORY=Finance
@@ -993,6 +1187,13 @@ For metric units any of the following prefixes can be used:
 @{period}: subject period
 @{rate}: depreciation rate
 @{basis}: calendar basis
+
+ NOTE=Named for AMORtissement LINeaire Comptabilite.
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=AMORDEGRC
 
 @CATEGORY=Finance
@@ -1004,6 +1205,13 @@ For metric units any of the following prefixes can be used:
 @{frequency}: number of interest payments per year
 @{basis}: calendar basis
 @{eom}: end-of-month flag
+
+ NOTE=@{frequency} may be 1 (annual), 2 (semi-annual), or 4 (quarterly).
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=COUPDAYS
 
 @CATEGORY=Finance
@@ -1015,6 +1223,13 @@ For metric units any of the following prefixes can be used:
 @{frequency}: number of interest payments per year
 @{basis}: calendar basis
 @{eom}: end-of-month flag
+
+ NOTE=@{frequency} may be 1 (annual), 2 (semi-annual), or 4 (quarterly).
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=COUPDAYBS,COUPDAYSNC
 
 @CATEGORY=Finance
@@ -1026,6 +1241,13 @@ For metric units any of the following prefixes can be used:
 @{frequency}: number of interest payments per year
 @{basis}: calendar basis
 @{eom}: end-of-month flag
+
+ NOTE=@{frequency} may be 1 (annual), 2 (semi-annual), or 4 (quarterly).
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=COUPDAYS,COUPDAYBS
 
 @CATEGORY=Finance
@@ -1037,6 +1259,13 @@ For metric units any of the following prefixes can be used:
 @{frequency}: number of interest payments per year
 @{basis}: calendar basis
 @{eom}: end-of-month flag
+
+ NOTE=@{frequency} may be 1 (annual), 2 (semi-annual), or 4 (quarterly).
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=COUPPCD,COUPDAYS,COUPDAYBS
 
 @CATEGORY=Finance
@@ -1048,6 +1277,13 @@ For metric units any of the following prefixes can be used:
 @{frequency}: number of interest payments per year
 @{basis}: calendar basis
 @{eom}: end-of-month flag
+
+ NOTE=@{frequency} may be 1 (annual), 2 (semi-annual), or 4 (quarterly).
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=COUPNCD,COUPPCD
 
 @CATEGORY=Finance
@@ -1059,6 +1295,13 @@ For metric units any of the following prefixes can be used:
 @{frequency}: number of interest payments per year
 @{basis}: calendar basis
 @{eom}: end-of-month flag
+
+ NOTE=@{frequency} may be 1 (annual), 2 (semi-annual), or 4 (quarterly).
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=COUPNCD,COUPDAYS,COUPDAYBS
 
 @CATEGORY=Finance
@@ -1069,6 +1312,7 @@ For metric units any of the following prefixes can be used:
 @{b}: limit for second random variable
 @{rho}: correlation of the two random variables
 
+
 @CATEGORY=Finance
 @FUNCTION=CUMIPMT
 @SYNTAX=CUMIPMT(rate,nper,pv,start_period,end_period,type)
@@ -1079,6 +1323,8 @@ For metric units any of the following prefixes can be used:
 @{start_period}: first period to accumulate for
 @{end_period}: last period to accumulate for
 @{type}: payment type
+
+ NOTE=If @{type} is 0, the default, payment is at the end of each period.  If @{type} is 1, payment is at the beginning of each period.
 @SEEALSO=IPMT
 
 @CATEGORY=Finance
@@ -1091,6 +1337,8 @@ For metric units any of the following prefixes can be used:
 @{start_period}: first period to accumulate for
 @{end_period}: last period to accumulate for
 @{type}: payment type
+
+ NOTE=If @{type} is 0, the default, payment is at the end of each period.  If @{type} is 1, payment is at the beginning of each period.
 @SEEALSO=PPMT
 
 @CATEGORY=Finance
@@ -1102,6 +1350,7 @@ For metric units any of the following prefixes can be used:
 @{life}: number of periods
 @{period}: subject period
 @{month}: number of months in first year of depreciation
+
 @SEEALSO=DDB,SLN,SYD
 
 @CATEGORY=Finance
@@ -1113,6 +1362,7 @@ For metric units any of the following prefixes can be used:
 @{life}: number of periods
 @{period}: subject period
 @{factor}: factor at which the balance declines
+
 @SEEALSO=DB,SLN,SYD
 
 @CATEGORY=Finance
@@ -1124,6 +1374,13 @@ For metric units any of the following prefixes can be used:
 @{par}: price per $100 face value
 @{redemption}: amount received at maturity
 @{basis}: calendar basis
+
+ NOTE=@{redemption} is the redemption value per $100 face value.
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=PRICEMAT
 
 @CATEGORY=Finance
@@ -1132,6 +1389,7 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=DOLLARDE converts a fractional dollar amount into a decimal amount.  This is the inverse of the DOLLARFR function.
 @{fractional_dollar}: amount to convert
 @{fraction}: denominator
+
 @SEEALSO=DOLLARFR
 
 @CATEGORY=Finance
@@ -1140,6 +1398,7 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=DOLLARFR converts a fractional dollar amount into a fraction which is represented as the digits after the decimal point.  For example, 2/8 would be represented as .2 while 3/16 would be represented as .03.
 @{decimal_dollar}: amount to convert
 @{fraction}: denominator
+
 @SEEALSO=DOLLARDE
 
 @CATEGORY=Finance
@@ -1152,6 +1411,13 @@ For metric units any of the following prefixes can be used:
 @{yield}: annual yield of security
 @{frequency}: number of interest payments per year
 @{basis}: calendar basis
+
+ NOTE=@{frequency} may be 1 (annual), 2 (semi-annual), or 4 (quarterly).
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=MDURATION
 
 @CATEGORY=Finance
@@ -1160,6 +1426,7 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=EFFECT calculates the effective interest rate using the formula (1+ {rate}/@{nper})^ {nper}-1 
 @{rate}: nominal annual interest rate
 @{nper}: number of periods used for compounding
+
 @SEEALSO=NOMINAL
 
 @CATEGORY=Finance
@@ -1167,6 +1434,9 @@ For metric units any of the following prefixes can be used:
 @SYNTAX=EURO(currency)
 @DESCRIPTION=EURO calculates the national currency amount corresponding to 1 EUR for any of the national currencies that were replaced by the Euro on its introduction.
 @{currency}: three-letter currency code
+
+ NOTE=@{currency} must be one of ATS (Austria), BEF (Belgium), DEM (Germany), ESP (Spain), EUR (Euro), FIM (Finland), FRF (France), GRD (Greece), IEP (Ireland), ITL (Italy), LUF (Luxembourg), NLG (The Netherlands), or PTE (Portugal).
+ NOTE=This function is not likely to be useful anymore.
 @SEEALSO=EUROCONVERT
 
 @CATEGORY=Finance
@@ -1176,6 +1446,9 @@ For metric units any of the following prefixes can be used:
 @{n}: amount
 @{source}: three-letter source currency code
 @{target}: three-letter target currency code
+
+ NOTE=@{source} and @{target} must be one of the currencies listed for the EURO function.
+ NOTE=This function is not likely to be useful anymore.
 @SEEALSO=EURO
 
 @CATEGORY=Finance
@@ -1187,6 +1460,8 @@ For metric units any of the following prefixes can be used:
 @{pmt}: payment at each period
 @{pv}: present value
 @{type}: payment type
+
+ NOTE=If @{type} is 0, the default, payment is at the end of each period.  If @{type} is 1, payment is at the beginning of each period.
 @SEEALSO=PV
 
 @CATEGORY=Finance
@@ -1195,6 +1470,7 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=FVSCHEDULE calculates the future value of @{principal} after applying a range of interest rates with compounding.
 @{principal}: intial value
 @{schedule}: range of interest rates
+
 @SEEALSO=FV
 
 @CATEGORY=Finance
@@ -1204,6 +1480,7 @@ For metric units any of the following prefixes can be used:
 @{rate}: effective annual interest rate
 @{pv}: present value
 @{fv}: future value
+
 @SEEALSO=FV,PV
 
 @CATEGORY=Finance
@@ -1215,6 +1492,12 @@ For metric units any of the following prefixes can be used:
 @{investment}: amount paid on settlement
 @{redemption}: amount received at maturity
 @{basis}: calendar basis
+
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=RECEIVED
 
 @CATEGORY=Finance
@@ -1227,6 +1510,8 @@ For metric units any of the following prefixes can be used:
 @{pv}: present value
 @{fv}: future value
 @{type}: payment type
+
+ NOTE=If @{type} is 0, the default, payment is at the end of each period.  If @{type} is 1, payment is at the beginning of each period.
 @SEEALSO=PPMT
 
 @CATEGORY=Finance
@@ -1235,6 +1520,8 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=IRR calculates the internal rate of return of a cash flow with periodic payments.  @{values} lists the payments (negative values) and receipts (positive values) for each period.
 @{values}: cash flow
 @{guess}: an estimate of what the result should be
+
+ NOTE=The optional @{guess} is needed because there can be more than one valid result.  It defaults to 10%.
 @SEEALSO=XIRR
 
 @CATEGORY=Finance
@@ -1245,6 +1532,7 @@ For metric units any of the following prefixes can be used:
 @{per}: period number
 @{nper}: number of periods
 @{pv}: present value
+
 @SEEALSO=PV
 
 @CATEGORY=Finance
@@ -1257,6 +1545,13 @@ For metric units any of the following prefixes can be used:
 @{yield}: annual yield of security
 @{frequency}: number of interest payments per year
 @{basis}: calendar basis
+
+ NOTE=@{frequency} may be 1 (annual), 2 (semi-annual), or 4 (quarterly).
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=DURATION
 
 @CATEGORY=Finance
@@ -1266,6 +1561,7 @@ For metric units any of the following prefixes can be used:
 @{values}: cash flow
 @{finance_rate}: interest rate for financing cost
 @{reinvest_rate}: interest rate for reinvestments
+
 @SEEALSO=IRR,XIRR
 
 @CATEGORY=Finance
@@ -1274,6 +1570,7 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=NOMINAL calculates the nominal interest rate from the effective rate.
 @{rate}: effective annual interest rate
 @{nper}: number of periods used for compounding
+
 @SEEALSO=EFFECT
 
 @CATEGORY=Finance
@@ -1285,6 +1582,8 @@ For metric units any of the following prefixes can be used:
 @{pv}: present value
 @{fv}: future value
 @{type}: payment type
+
+ NOTE=If @{type} is 0, the default, payment is at the end of each period.  If @{type} is 1, payment is at the beginning of each period.
 @SEEALSO=PV,FV
 
 @CATEGORY=Finance
@@ -1294,6 +1593,8 @@ For metric units any of the following prefixes can be used:
 @{rate}: effective interest rate per period
 @{value1}: cash flow for period 1
 @{value2}: cash flow for period 2
+
+ NOTE=If @{type} is 0, the default, payment is at the end of each period.  If @{type} is 1, payment is at the beginning of each period.
 @SEEALSO=PV
 
 @CATEGORY=Finance
@@ -1309,6 +1610,13 @@ For metric units any of the following prefixes can be used:
 @{redemption}: amount received at maturity
 @{frequency}: number of interest payments per year
 @{basis}: calendar basis
+
+ NOTE=@{frequency} may be 1 (annual), 2 (semi-annual), or 4 (quarterly).
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=ODDLPRICE,ODDFYIELD
 
 @CATEGORY=Finance
@@ -1324,6 +1632,13 @@ For metric units any of the following prefixes can be used:
 @{redemption}: amount received at maturity
 @{frequency}: number of interest payments per year
 @{basis}: calendar basis
+
+ NOTE=@{frequency} may be 1 (annual), 2 (semi-annual), or 4 (quarterly).
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=ODDFPRICE,ODDLYIELD
 
 @CATEGORY=Finance
@@ -1338,6 +1653,13 @@ For metric units any of the following prefixes can be used:
 @{redemption}: amount received at maturity
 @{frequency}: number of interest payments per year
 @{basis}: calendar basis
+
+ NOTE=@{frequency} may be 1 (annual), 2 (semi-annual), or 4 (quarterly).
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=YIELD,DURATION
 
 @CATEGORY=Finance
@@ -1352,6 +1674,13 @@ For metric units any of the following prefixes can be used:
 @{redemption}: amount received at maturity
 @{frequency}: number of interest payments per year
 @{basis}: calendar basis
+
+ NOTE=@{frequency} may be 1 (annual), 2 (semi-annual), or 4 (quarterly).
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=YIELD,DURATION
 
 @CATEGORY=Finance
@@ -1370,6 +1699,7 @@ For metric units any of the following prefixes can be used:
 @{volatility1}: annualized volatility in price of the underlying asset of the first option
 @{volatility2}: annualized volatility in price of the underlying asset of the second option
 @{rho}: correlation between the two underlying assets
+
 @SEEALSO=OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1387,6 +1717,7 @@ For metric units any of the following prefixes can be used:
 @{volatility1}: annualized volatility in price of asset 1
 @{volatility2}: annualized volatility in price of asset 2
 @{rho}: correlation between the prices of the two assets
+
 @SEEALSO=OPT_EURO_EXCHANGE,OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1395,6 +1726,18 @@ For metric units any of the following prefixes can be used:
 
 @CATEGORY=Finance
 @FUNCTION=OPT_BINOMIAL
+ SYNTAX=OPT_BINOMIAL(amer_euro_flag,call_put_flag,num_time_steps,spot,strike,time,rate,volatility,cost_of_carry)
+ DESCRIPTION= 
+ {amer_euro_flag}: 'a' for an American style option or 'e' for a European style option
+ {call_put_flag}: 'c' for a call and 'p' for a put
+ {num_time_steps}: number of time steps used in the valuation
+ {spot}: spot price
+ {strike}: strike price
+ {time}: time to maturity in years
+ {rate}: annualized risk-free interest rate
+ {volatility}: annualized volatility of the asset
+ {cost_of_carry}: net cost of holding the underlying asset
+ NOTE=A larger @{num_time_steps} yields greater accuracy but  OPT_BINOMIAL is slower to calculate.
 @SEEALSO=OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1412,6 +1755,8 @@ For metric units any of the following prefixes can be used:
 @{rate}: risk-free interest rate to the exercise date in percent
 @{volatility}: annualized volatility of the asset in percent for the period through to the exercise date
 @{cost_of_carry}: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0
+
+ NOTE=The returned value will be expressed in the same units as @{strike} and @{spot}.
 @SEEALSO=OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_VEGA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1425,15 +1770,8 @@ For metric units any of the following prefixes can be used:
 @{rate}: risk-free interest rate to the exercise date in percent
 @{volatility}: annualized volatility of the asset in percent for the period through to the exercise date
 @{cost_of_carry}: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0
- SYNTAX=OPT_BS_CARRYCOST(call_put_flag,spot,strike,time,rate,volatility,cost_of_carry))
- DESCRIPTION=
- {call_put_flag}: 'c' for a call and 'p' for a put
- {spot}: spot price
- {strike}: strike price
- {time}: time to maturity in years
- {rate}: risk-free interest rate to the exercise date in percent
- {volatility}: annualized volatility of the asset in percent for the period through to the exercise date
- {cost_of_carry}: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0
+
+ NOTE=Elasticity is expressed as the rate of change of the option value, per 100% volatility.
 @SEEALSO=OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1447,6 +1785,8 @@ For metric units any of the following prefixes can be used:
 @{rate}: risk-free interest rate to the exercise date in percent
 @{volatility}: annualized volatility of the asset in percent for the period through to the exercise date
 @{cost_of_carry}: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0
+
+ NOTE=The returned value will be expressed in the same units as @{strike} and @{spot}.
 @SEEALSO=OPT_BS,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_VEGA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1459,6 +1799,9 @@ For metric units any of the following prefixes can be used:
 @{rate}: risk-free interest rate to the exercise date in percent
 @{volatility}: annualized volatility of the asset in percent for the period through to the exercise date
 @{cost_of_carry}: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0
+
+ NOTE=Gamma is expressed as the rate of change of delta per unit change in @{spot}.
+ NOTE=Gamma is the same for calls and puts.
 @SEEALSO=OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_VEGA
 
 @CATEGORY=Finance
@@ -1472,6 +1815,8 @@ For metric units any of the following prefixes can be used:
 @{rate}: risk-free interest rate to the exercise date in percent
 @{volatility}: annualized volatility of the asset in percent for the period through to the exercise date
 @{cost_of_carry}: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0
+
+ NOTE=Rho is expressed as the rate of change of the option value, per 100% change in @{rate}.
 @SEEALSO=OPT_BS,OPT_BS_DELTA,OPT_BS_THETA,OPT_BS_VEGA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1485,6 +1830,8 @@ For metric units any of the following prefixes can be used:
 @{rate}: risk-free interest rate to the exercise date in percent
 @{volatility}: annualized volatility of the asset in percent for the period through to the exercise date
 @{cost_of_carry}: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0
+
+ NOTE=Theta is expressed as the negative of the rate of change of the option value, per 365.25 days.
 @SEEALSO=OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_VEGA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1497,6 +1844,9 @@ For metric units any of the following prefixes can be used:
 @{rate}: risk-free interest rate to the exercise date in percent
 @{volatility}: annualized volatility of the asset in percent for the period through to the exercise date
 @{cost_of_carry}: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0
+
+ NOTE=Vega is the same for calls and puts.
+ NOTE=Vega is expressed as the rate of change of option value, per 100% volatility.
 @SEEALSO=OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1518,10 +1868,22 @@ For metric units any of the following prefixes can be used:
 @{volatility1}: annualized volatility in price of asset 1
 @{volatility2}: annualized volatility in price of asset 2
 @{rho}: correlation between the prices of the two assets
+
 @SEEALSO=OPT_AMER_EXCHANGE,OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
 @FUNCTION=OPT_EXEC
+ SYNTAX=OPT_EXEC(call_put_flag,spot,strike,time,rate,volatility,cost_of_carry,lambda)
+ DESCRIPTION= 
+ {call_put_flag}: 'c' for a call and 'p' for a put
+ {spot}: spot price
+ {strike}: strike price
+ {time}: time to maturity in days
+ {rate}: annualized risk-free interest rate
+ {volatility}: annualized volatility of the asset
+ {cost_of_carry}: net cost of holding the underlying asset
+ {lambda}: jump rate for executives
+ NOTE=The model assumes executives forfeit their options if they leave the company.
 @SEEALSO=OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1537,6 +1899,7 @@ For metric units any of the following prefixes can be used:
 @{rate}: annualized risk-free interest rate
 @{cost_of_carry}: net cost of holding the underlying asset
 @{volatility}: annualized volatility of the asset
+
 @SEEALSO=OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1552,6 +1915,7 @@ For metric units any of the following prefixes can be used:
 @{rate}: annualized risk-free interest rate
 @{cost_of_carry}: net cost of holding the underlying asset
 @{volatility}: annualized volatility of the asset
+
 @SEEALSO=OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1566,6 +1930,7 @@ For metric units any of the following prefixes can be used:
 @{rate}: annualized risk-free interest rate
 @{cost_of_carry}: net cost of holding the underlying asset
 @{volatility}: annualized volatility of the asset
+
 @SEEALSO=OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1584,6 +1949,7 @@ For metric units any of the following prefixes can be used:
 @{rate}: risk-free interest rate to the exercise date in percent
 @{volatility}: annualized volatility of the asset in percent for the period through to the exercise date
 @{cost_of_carry}: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0
+
 @SEEALSO=OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1597,6 +1963,7 @@ For metric units any of the following prefixes can be used:
 @{domestic_rate}: domestic risk-free interest rate to the exercise date in percent
 @{foreign_rate}: foreign risk-free interest rate to the exercise date in percent
 @{volatility}: annualized volatility of the asset in percent for the period through to the exercise date
+
 @SEEALSO=OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1611,6 +1978,7 @@ For metric units any of the following prefixes can be used:
 @{volatility}: annualized volatility of the asset in percent for the period through to the exercise date
 @{lambda}: expected number of 'jumps' per year
 @{gamma}: proportion of volatility explained by the 'jumps'
+
 @SEEALSO=OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1619,6 +1987,18 @@ For metric units any of the following prefixes can be used:
 
 @CATEGORY=Finance
 @FUNCTION=OPT_ON_OPTIONS
+ SYNTAX=OPT_ON_OPTIONS(type_flag,spot,strike1,strike2,time1,time2,rate,cost_of_carry,volatility)
+ DESCRIPTION= 
+ {type_flag}: 'cc' for calls on calls, 'cp' for calls on puts, and so on for 'pc', and 'pp'.
+ {spot}: spot price
+ {strike1}: strike price at which the option being valued is struck
+ {strike2}: strike price at which the underlying option is struck
+ {time1}: time in years to maturity of the option
+ {time2}: time in years to the maturity of the underlying option
+ {rate}: annualized risk-free interest rate
+ {cost_of_carry}: net cost of holding the underlying asset of the underlying option (for common stocks, the risk free rate less the dividend yield)
+ {volatility}: annualized volatility in price of the underlying asset of the underlying option
+ NOTE=@{time2} â?¥ @{time1}
 @SEEALSO=OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1647,6 +2027,7 @@ For metric units any of the following prefixes can be used:
 @{rate}: annualized risk-free interest rate
 @{cost_of_carry}: net cost of holding the underlying asset
 @{volatility}: annualized volatility of the asset
+
 @SEEALSO=OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_GAMMA
 
 @CATEGORY=Finance
@@ -1658,6 +2039,8 @@ For metric units any of the following prefixes can be used:
 @{pv}: present value
 @{fv}: future value
 @{type}: payment type
+
+ NOTE=If @{type} is 0, the default, payment is at the end of each period.  If @{type} is 1, payment is at the beginning of each period.
 @SEEALSO=PV,FV,RATE,ISPMT
 
 @CATEGORY=Finance
@@ -1670,6 +2053,8 @@ For metric units any of the following prefixes can be used:
 @{pv}: present value
 @{fv}: future value
 @{type}: payment type
+
+ NOTE=If @{type} is 0, the default, payment is at the end of each period.  If @{type} is 1, payment is at the beginning of each period.
 @SEEALSO=IPMT
 
 @CATEGORY=Finance
@@ -1683,6 +2068,13 @@ For metric units any of the following prefixes can be used:
 @{redemption}: amount received at maturity
 @{frequency}: number of interest payments per year
 @{basis}: calendar basis
+
+ NOTE=@{frequency} may be 1 (annual), 2 (semi-annual), or 4 (quarterly).
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=YIELD,DURATION
 
 @CATEGORY=Finance
@@ -1694,6 +2086,12 @@ For metric units any of the following prefixes can be used:
 @{discount}: annual rate at which to discount
 @{redemption}: amount received at maturity
 @{basis}: calendar basis
+
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=PRICEMAT
 
 @CATEGORY=Finance
@@ -1706,6 +2104,12 @@ For metric units any of the following prefixes can be used:
 @{discount}: annual rate at which to discount
 @{yield}: annual yield of security
 @{basis}: calendar basis
+
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=PRICEDISC
 
 @CATEGORY=Finance
@@ -1717,6 +2121,8 @@ For metric units any of the following prefixes can be used:
 @{pmt}: payment at each period
 @{fv}: future value
 @{type}: payment type
+
+ NOTE=If @{type} is 0, the default, payment is at the end of each period.  If @{type} is 1, payment is at the beginning of each period.
 @SEEALSO=FV
 
 @CATEGORY=Finance
@@ -1729,6 +2135,9 @@ For metric units any of the following prefixes can be used:
 @{fv}: future value
 @{type}: payment type
 @{guess}: an estimate of what the result should be
+
+ NOTE=If @{type} is 0, the default, payment is at the end of each period.  If @{type} is 1, payment is at the beginning of each period.
+ NOTE=The optional @{guess} is needed because there can be more than one valid result.  It defaults to 10%.
 @SEEALSO=PV,FV
 
 @CATEGORY=Finance
@@ -1740,6 +2149,12 @@ For metric units any of the following prefixes can be used:
 @{investment}: amount paid on settlement
 @{rate}: nominal annual interest rate
 @{basis}: calendar basis
+
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=INTRATE
 
 @CATEGORY=Finance
@@ -1749,6 +2164,9 @@ For metric units any of the following prefixes can be used:
 @{p}: number of periods
 @{pv}: present value
 @{fv}: future value
+
+ NOTE=If @{type} is 0, the default, payment is at the end of each period.  If @{type} is 1, payment is at the beginning of each period.
+ NOTE=Note that @{p} need not be an integer but for fractional value the calculated rate is only approximate.
 @SEEALSO=PV,FV,RATE
 
 @CATEGORY=Finance
@@ -1758,6 +2176,7 @@ For metric units any of the following prefixes can be used:
 @{cost}: initial cost of asset
 @{salvage}: value after depreciation
 @{life}: number of periods
+
 @SEEALSO=DB,DDB,SYD
 
 @CATEGORY=Finance
@@ -1768,6 +2187,7 @@ For metric units any of the following prefixes can be used:
 @{salvage}: value after depreciation
 @{life}: number of periods
 @{period}: subject period
+
 @SEEALSO=DB,DDB,SLN
 
 @CATEGORY=Finance
@@ -1777,6 +2197,7 @@ For metric units any of the following prefixes can be used:
 @{settlement}: settlement date
 @{maturity}: maturity date
 @{discount}: annual rate at which to discount
+
 @SEEALSO=TBILLPRICE,TBILLYIELD
 
 @CATEGORY=Finance
@@ -1786,6 +2207,7 @@ For metric units any of the following prefixes can be used:
 @{settlement}: settlement date
 @{maturity}: maturity date
 @{discount}: annual rate at which to discount
+
 @SEEALSO=TBILLEQ,TBILLYIELD
 
 @CATEGORY=Finance
@@ -1795,6 +2217,7 @@ For metric units any of the following prefixes can be used:
 @{settlement}: settlement date
 @{maturity}: maturity date
 @{price}: price
+
 @SEEALSO=TBILLEQ,TBILLPRICE
 
 @CATEGORY=Finance
@@ -1808,6 +2231,8 @@ For metric units any of the following prefixes can be used:
 @{end_period}: last period to accumulate for
 @{factor}: factor at which the balance declines
 @{no_switch}: do not switch to straight-line depreciation
+
+ NOTE=If @{no_switch} is FALSE, the calculation switches to straight-line depreciation when depreciation is greater than the declining balance calculation.
 @SEEALSO=DB,DDB
 
 @CATEGORY=Finance
@@ -1817,6 +2242,8 @@ For metric units any of the following prefixes can be used:
 @{values}: cash flow
 @{dates}: dates of cash flow
 @{guess}: an estimate of what the result should be
+
+ NOTE=The optional @{guess} is needed because there can be more than one valid result.  It defaults to 10%.
 @SEEALSO=IRR
 
 @CATEGORY=Finance
@@ -1826,6 +2253,8 @@ For metric units any of the following prefixes can be used:
 @{rate}: effective annual interest rate
 @{values}: cash flow
 @{dates}: dates of cash flow
+
+ NOTE=If @{type} is 0, the default, payment is at the end of each period.  If @{type} is 1, payment is at the beginning of each period.
 @SEEALSO=NPV
 
 @CATEGORY=Finance
@@ -1839,6 +2268,13 @@ For metric units any of the following prefixes can be used:
 @{redemption}: amount received at maturity
 @{frequency}: number of interest payments per year
 @{basis}: calendar basis
+
+ NOTE=@{frequency} may be 1 (annual), 2 (semi-annual), or 4 (quarterly).
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=PRICE,DURATION
 
 @CATEGORY=Finance
@@ -1850,6 +2286,12 @@ For metric units any of the following prefixes can be used:
 @{price}: price of security
 @{redemption}: amount received at maturity
 @{basis}: calendar basis
+
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=PRICE,DURATION
 
 @CATEGORY=Finance
@@ -1862,12 +2304,19 @@ For metric units any of the following prefixes can be used:
 @{rate}: nominal annual interest rate
 @{price}: price of security
 @{basis}: calendar basis
+
+ NOTE=If @{basis} is 0, then the US 30/360 method is used.
+ NOTE=If @{basis} is 1, then actual number of days is used.
+ NOTE=If @{basis} is 2, then actual number of days is used within a month, but years are considered only 360 days.
+ NOTE=If @{basis} is 3, then actual number of days is used within a month, but years are always considered 365 days.
+ NOTE=If @{basis} is 4, then the European 30/360 method is used.
 @SEEALSO=YIELDDISC,YIELD
 
 @CATEGORY=Gnumeric
 @FUNCTION=GNUMERIC_VERSION
 @SYNTAX=GNUMERIC_VERSION()
 @DESCRIPTION=GNUMERIC_VERSION returns the version of gnumeric as a string.
+
 @SEEALSO=
 
 @CATEGORY=Information
@@ -1901,6 +2350,7 @@ For metric units any of the following prefixes can be used:
   width          		Returns the column width.
 @{type}: string specifying the type of information requested
 @{cell}: cell reference
+
 @SEEALSO=INDIRECT
 
 @CATEGORY=Information
@@ -1923,10 +2373,15 @@ For metric units any of the following prefixes can be used:
 	#NUM!    	6
 	#N/A     		7
 @{error}: an error
+
 @SEEALSO=ISERROR
 
 @CATEGORY=Information
 @FUNCTION=EXPRESSION
+ SYNTAX=EXPRESSION(cell)
+ DESCRIPTION= 
+ {cell}: a cell reference
+ NOTE=If @{cell} contains no expression, EXPRESSION returns empty.
 @SEEALSO=TEXT
 
 @CATEGORY=Information
@@ -1935,6 +2390,11 @@ For metric units any of the following prefixes can be used:
 
 @CATEGORY=Information
 @FUNCTION=GETENV
+ SYNTAX=GETENV(name)
+ DESCRIPTION= 
+ {name}: the name of the environment variable
+ NOTE=If a variable called @{name} does not exist, #N/A! will be returned.
+ NOTE=Variable names are case sensitive.
 
 @CATEGORY=Information
 @FUNCTION=INFO
@@ -1949,10 +2409,15 @@ For metric units any of the following prefixes can be used:
   system       		Returns the name of the environment.
   totmem       		Returns the amount of total memory available.
 @{type}: string giving the type of information requested
+
 @SEEALSO=CELL
 
 @CATEGORY=Information
 @FUNCTION=ISBLANK
+ SYNTAX=ISBLANK(value)
+ DESCRIPTION=This function checks if a value is blank.  Empty cells are blank, but empty strings are not.
+ {value}: a value
+
 
 @CATEGORY=Information
 @FUNCTION=ISERR
@@ -1968,6 +2433,10 @@ For metric units any of the following prefixes can be used:
 
 @CATEGORY=Information
 @FUNCTION=ISLOGICAL
+ SYNTAX=ISLOGICAL(value)
+ DESCRIPTION=This function checks if a value is either TRUE or FALSE.
+ {value}: a value
+
 
 @CATEGORY=Information
 @FUNCTION=ISNA
@@ -1979,6 +2448,10 @@ For metric units any of the following prefixes can be used:
 
 @CATEGORY=Information
 @FUNCTION=ISNUMBER
+ SYNTAX=ISNUMBER(value)
+ DESCRIPTION=This function checks if a value is a number.  Neither TRUE nor FALSE are numbers for this purpose.
+ {value}: a value
+
 
 @CATEGORY=Information
 @FUNCTION=ISODD
@@ -1986,6 +2459,10 @@ For metric units any of the following prefixes can be used:
 
 @CATEGORY=Information
 @FUNCTION=ISREF
+ SYNTAX=ISREF(value)
+ DESCRIPTION=This function checks if a value is a cell reference.
+ {value}: a value
+
 
 @CATEGORY=Information
 @FUNCTION=ISTEXT
@@ -1993,6 +2470,10 @@ For metric units any of the following prefixes can be used:
 
 @CATEGORY=Information
 @FUNCTION=N
+ SYNTAX=N(text)
+ DESCRIPTION= 
+ {text}: string
+ NOTE=If @{text} contains non-numerical text, 0 is returned.
 
 @CATEGORY=Information
 @FUNCTION=NA
@@ -2009,18 +2490,25 @@ For metric units any of the following prefixes can be used:
 64 	= array
 @{value}: a value
 
+
 @CATEGORY=Logic
 @FUNCTION=AND
 @SYNTAX=AND(b0,b1)
 @DESCRIPTION=AND calculates the logical conjunction of its arguments @{b0},@{b1},...
 @{b0}: logical value
 @{b1}: logical value
+
+ NOTE=If an argument is numerical, zero is considered FALSE and anything else TRUE.
+ NOTE=Strings and empty values are ignored.
+ NOTE=If no logical values are provided, then the error #VALUE! is returned.
+ NOTE=This function is strict: if any argument is an error, the result will be the first such error.
 @SEEALSO=OR,NOT,IF
 
 @CATEGORY=Logic
 @FUNCTION=FALSE
 @SYNTAX=FALSE()
 @DESCRIPTION=FALSE returns the value FALSE.
+
 @SEEALSO=TRUE,IF
 
 @CATEGORY=Logic
@@ -2030,6 +2518,7 @@ For metric units any of the following prefixes can be used:
 @{cond}: condition.
 @{trueval}: value to use if condition is true.
 @{falseval}: value to use if condition is false.
+
 @SEEALSO=AND,OR,XOR,NOT,IFERROR
 
 @CATEGORY=Logic
@@ -2038,6 +2527,7 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=This function returns the first value, unless that is an error, in which case it returns the second.
 @{x}: value to test for error.
 @{y}: alternate value.
+
 @SEEALSO=IF,ISERROR
 
 @CATEGORY=Logic
@@ -2045,6 +2535,9 @@ For metric units any of the following prefixes can be used:
 @SYNTAX=NOT(b)
 @DESCRIPTION=NOT calculates the logical negation of its argument.
 @{b}: logical value
+
+ NOTE=If the argument is numerical, zero is considered FALSE and anything else TRUE.
+ NOTE=Strings and empty values are ignored.
 @SEEALSO=AND,OR,IF
 
 @CATEGORY=Logic
@@ -2053,12 +2546,18 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=OR calculates the logical disjunction of its arguments @{b0},@{b1},...
 @{b0}: logical value
 @{b1}: logical value
+
+ NOTE=If an argument is numerical, zero is considered FALSE and anything else TRUE.
+ NOTE=Strings and empty values are ignored.
+ NOTE=If no logical values are provided, then the error #VALUE! is returned.
+ NOTE=This function is strict: if any argument is an error, the result will be the first such error.
 @SEEALSO=AND,XOR,NOT,IF
 
 @CATEGORY=Logic
 @FUNCTION=TRUE
 @SYNTAX=TRUE()
 @DESCRIPTION=TRUE returns the value TRUE.
+
 @SEEALSO=FALSE,IF
 
 @CATEGORY=Logic
@@ -2067,10 +2566,24 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=XOR calculates the logical exclusive disjunction of its arguments @{b0},@{b1},...
 @{b0}: logical value
 @{b1}: logical value
+
+ NOTE=If an argument is numerical, zero is considered FALSE and anything else TRUE.
+ NOTE=Strings and empty values are ignored.
+ NOTE=If no logical values are provided, then the error #VALUE! is returned.
+ NOTE=This function is strict: if any argument is an error, the result will be the first such error.
 @SEEALSO=OR,AND,NOT,IF
 
 @CATEGORY=Lookup
 @FUNCTION=ADDRESS
+ SYNTAX=ADDRESS(row_num,col_num,abs_num,a1,text)
+ DESCRIPTION= 
+ {row_num}: row number
+ {col_num}: column number
+ {abs_num}: 1 for an absolute, 2 for a row absolute and column relative, 3 for a row relative and column absolute, and 4 for a relative reference; defaults to 1
+ {a1}: if TRUE, an A1-style reference is provided, otherwise an R1C1-style reference; defaults to TRUE
+ {text}: name of the worksheet, defaults to no sheet
+ NOTE=If @{row_num} or @{col_num} is less than one, ADDRESS returns #VALUE!
+ NOTE=If @{abs_num} is greater than 4 ADDRESS returns #VALUE!
 @SEEALSO=COLUMNNUMBER
 
 @CATEGORY=Lookup
@@ -2084,6 +2597,8 @@ For metric units any of the following prefixes can be used:
 @{index}: positive number
 @{value1}: first value
 @{value2}: second value
+
+ NOTE=@{index} is truncated to an integer. If @{index} < 1 or the truncated @{index} > number of values, CHOOSE returns #VALUE!
 @SEEALSO=IF
 
 @CATEGORY=Lookup
@@ -2091,14 +2606,24 @@ For metric units any of the following prefixes can be used:
 @SYNTAX=COLUMN(x)
 @DESCRIPTION=COLUMN function returns a Nx1 array containing the sequence of integers from the first column to the last column of @{reference}.
 @{x}: reference, defaults to the position of the current expression
+
+ NOTE=If @{reference} is neither an array nor a reference nor a range, returns #VALUE!
 @SEEALSO=COLUMNS,ROW,ROWS
 
 @CATEGORY=Lookup
 @FUNCTION=COLUMNNUMBER
+ SYNTAX=COLUMNNUMBER(name)
+ DESCRIPTION= 
+ {name}: column name such as "IV"
+ NOTE=If @{name} is invalid, COLUMNNUMBER returns #VALUE!
 @SEEALSO=ADDRESS
 
 @CATEGORY=Lookup
 @FUNCTION=COLUMNS
+ SYNTAX=COLUMNS(reference)
+ DESCRIPTION= 
+ {reference}: array or area
+ NOTE=If @{reference} is neither an array nor a reference nor a range, COLUMNS returns #VALUE!
 @SEEALSO=COLUMN,ROW,ROWS
 
 @CATEGORY=Lookup
@@ -2110,6 +2635,9 @@ For metric units any of the following prefixes can be used:
 @{row}: 1-based column offset indicating the return values 
 @{approximate}: if false, an exact match of @{value} must be found; defaults to TRUE
 @{as_index}: if true, the 0-based row offset is returned; defaults to FALSE
+
+ NOTE=If @{approximate} is true, then the values must be sorted in order of ascending value.
+ NOTE=HLOOKUP returns #REF! if @{row} falls outside @{range}.
 @SEEALSO=VLOOKUP
 
 @CATEGORY=Lookup
@@ -2119,6 +2647,7 @@ For metric units any of the following prefixes can be used:
 @{link_location}: string
 @{label}: string, optional
 
+
 @CATEGORY=Lookup
 @FUNCTION=INDEX
 @SYNTAX=INDEX(array,row,col,area)
@@ -2128,8 +2657,15 @@ For metric units any of the following prefixes can be used:
 @{col}: desired column, defaults to 1
 @{area}: from which area to select a cell, defaults to 1
 
+ NOTE=If the reference falls outside the range of @{array}, INDEX returns #REF!
+
 @CATEGORY=Lookup
 @FUNCTION=INDIRECT
+ SYNTAX=INDIRECT(ref_text,format)
+ DESCRIPTION= 
+ {ref_text}: 
+ {format}: if true, @{ref_text} is given in A1-style, otherwise it is given in R1C1 style; defaults to true
+ NOTE=If @{ref_text} is not a valid reference in the style determined by @{format}, INDIRECT returns #REF!
 @SEEALSO=AREAS,INDEX,CELL
 
 @CATEGORY=Lookup
@@ -2139,6 +2675,11 @@ For metric units any of the following prefixes can be used:
 @{value}: value to look up
 @{vector1}: range to search:
 @{vector2}: range of return values
+
+ NOTE=If LOOKUP can't find @{value} it uses the largest value less than @{value}.
+ NOTE=The data must be sorted.
+ NOTE=If @{value} is smaller than the first value it returns #N/A.
+ NOTE=If the corresponding location does not exist in @{vector2}, it returns #N/A.
 @SEEALSO=VLOOKUP,HLOOKUP
 
 @CATEGORY=Lookup
@@ -2148,6 +2689,10 @@ For metric units any of the following prefixes can be used:
 @{seek}: value to find
 @{vector}: n by 1 or 1 by n range to be searched
 @{type}: +1 to find the largest value â?¤ @{seek}, 0 to find the first value = @{seek}, or-1 to find the smallest value â?¥ @{seek}
+
+ NOTE= For @{type} = -1 the data must be sorted in descending order; for @{type} = +1 the data must be sorted in ascending order.
+ NOTE=If @{seek} could not be found, #N/A is returned.
+ NOTE=If @{vector} is neither n by 1 nor 1 by n, #N/A is returned.
 @SEEALSO=LOOKUP
 
 @CATEGORY=Lookup
@@ -2159,6 +2704,8 @@ For metric units any of the following prefixes can be used:
 @{col}: number of columns to offset @{range}
 @{height}: height of the offset range, defaults to height of @{range}
 @{width}: width of the offset range, defaults to width of @{range}
+
+ NOTE=If @{range} is neither a reference nor a range, OFFSET returns #VALUE!
 @SEEALSO=COLUMN,COLUMNS,ROWS,INDEX,INDIRECT,ADDRESS
 
 @CATEGORY=Lookup
@@ -2166,10 +2713,16 @@ For metric units any of the following prefixes can be used:
 @SYNTAX=ROW(x)
 @DESCRIPTION=ROW function returns a 1xN array containing the sequence of integers from the first row to the last row of @{reference}.
 @{x}: reference, defaults to the position of the current expression
+
+ NOTE=If @{reference} is neither an array nor a reference nor a range, returns #VALUE!
 @SEEALSO=COLUMN,COLUMNS,ROWS
 
 @CATEGORY=Lookup
 @FUNCTION=ROWS
+ SYNTAX=ROWS(reference)
+ DESCRIPTION= 
+ {reference}: array, reference, or range
+ NOTE=If @{reference} is neither an array nor a reference nor a range, ROWS returns #VALUE!
 @SEEALSO=COLUMN,COLUMNS,ROW
 
 @CATEGORY=Lookup
@@ -2185,6 +2738,9 @@ For metric units any of the following prefixes can be used:
 @{column}: 1-based column offset indicating the return values
 @{approximate}: if false, an exact match of @{value} must be found; defaults to TRUE
 @{as_index}: if true, the 0-based row offset is returned; defaults to FALSE
+
+ NOTE=If @{approximate} is true, then the values must be sorted in order of ascending value.
+ NOTE=VLOOKUP returns #REF! if @{row} falls outside @{range}.
 @SEEALSO=HLOOKUP
 
 @CATEGORY=Mathematics
@@ -2192,6 +2748,7 @@ For metric units any of the following prefixes can be used:
 @SYNTAX=ABS(x)
 @DESCRIPTION=ABS gives the absolute value of @{x}, i.e. the non-negative number of the same magnitude as @{x}.
 @{x}: number
+
 @SEEALSO=CEIL, CEILING, FLOOR, INT, MOD
 
 @CATEGORY=Mathematics
@@ -2215,6 +2772,7 @@ For metric units any of the following prefixes can be used:
 @SYNTAX=Arabic(roman)
 @DESCRIPTION=Any Roman symbol to the left of a larger symbol (directly or indirectly) reduces the final value by the symbol amount, otherwise, it increases the final amount by the symbol's amount.
 @{roman}: Roman numeral
+
 @SEEALSO=ROMAN
 
 @CATEGORY=Mathematics
@@ -2222,6 +2780,8 @@ For metric units any of the following prefixes can be used:
 @SYNTAX=ASIN(x)
 @DESCRIPTION=ASIN calculates the arc sine of @{x}; that is the value whose sine is @{x}.
 @{x}: number
+
+ NOTE=If @{x} falls outside the range -1 to 1, ASIN returns #NUM!
 @SEEALSO=SIN COS,ASINH,DEGREES,RADIANS
 
 @CATEGORY=Mathematics
@@ -2229,6 +2789,7 @@ For metric units any of the following prefixes can be used:
 @SYNTAX=ASINH(x)
 @DESCRIPTION=ASINH calculates the inverse hyperbolic sine of @{x}; that is the value whose hyperbolic sine is @{x}.
 @{x}: number
+
 @SEEALSO=ASIN,ACOSH,SIN,COS,DEGREES,RADIANS
 
 @CATEGORY=Mathematics
@@ -2236,6 +2797,7 @@ For metric units any of the following prefixes can be used:
 @SYNTAX=ATAN(x)
 @DESCRIPTION=ATAN calculates the arc tangent of @{x}; that is the value whose tangent is @{x}.
 @{x}: angle in radians
+
 @SEEALSO=TAN,COS,SIN,DEGREES,RADIANS
 
 @CATEGORY=Mathematics
@@ -2244,6 +2806,7 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=ATAN2 calculates the arc tangent of the ratio @{b1}/@{b2} with the sign according to the quadrant containing (@{b1},@{b2}).
 @{b1}: angle in radians
 @{b2}: angle in radians
+
 @SEEALSO=ATAN,ATANH,COS,SIN,DEGREES,RADIANS
 
 @CATEGORY=Mathematics
@@ -2251,6 +2814,8 @@ For metric units any of the following prefixes can be used:
 @SYNTAX=ATANH(x)
 @DESCRIPTION=ATANH calculates the inverse hyperbolic tangent of @{x}; that is the value whose hyperbolic tangent is @{x}.
 @{x}: angle in radians
+
+ NOTE=If the absolute value of @{x} is greater than 1.0, ATANH returns #NUM!
 @SEEALSO=ATAN,COS,SIN,DEGREES,RADIANS
 
 @CATEGORY=Mathematics
@@ -2263,6 +2828,8 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=BETA function returns the value of the Euler beta function extended to all real numbers except 0 and negative integers.
 @{x}: number
 @{y}: number
+
+ NOTE=If @{x}, @{y}, or (@{x} + @{y}) are non-positive integers, BETA returns #NUM!
 @SEEALSO=BETALN,GAMMALN
 
 @CATEGORY=Mathematics
@@ -2271,6 +2838,8 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=BETALN function returns the natural logarithm of the absolute value of the Euler beta function extended to all real numbers except 0 and negative integers.
 @{x}: number
 @{y}: number
+
+ NOTE=If @{x}, @{y}, or (@{x} + @{y}) are non-positive integers, BETALN returns #NUM!
 @SEEALSO=BETA,GAMMALN
 
 @CATEGORY=Mathematics
@@ -2278,6 +2847,7 @@ For metric units any of the following prefixes can be used:
 @SYNTAX=CEIL(x)
 @DESCRIPTION=CEIL(@{x}) is the smallest integer that is at least as large as @{x}.
 @{x}: number
+
 @SEEALSO=CEILING,FLOOR,ABS,INT,MOD
 
 @CATEGORY=Mathematics
@@ -2286,6 +2856,9 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=CEILING(@{x},@{significance}) is the nearest multiple of @{significance} whose absolute value is at least ABS(@{x}).
 @{x}: number
 @{significance}: base multiple (defaults to 1 for @{x} > 0 and -1 for @{x} <0)
+
+ NOTE=If @{x} or @{significance} is non-numeric, CEILING returns a #VALUE! error.
+ NOTE=If @{x} and @{significance} have different signs, CEILING returns a #NUM! error.
 @SEEALSO=CEIL,FLOOR,ABS,INT,MOD
 
 @CATEGORY=Mathematics
@@ -2295,16 +2868,20 @@ For metric units any of the following prefixes can be used:
 @{n}: non-negative integer
 @{k}: non-negative integer
 
+ NOTE=If @{n} is less than @{k} COMBIN returns #NUM!
+
 @CATEGORY=Mathematics
 @FUNCTION=COMBINA
+ SEEALSO=COMBIN
 
 @CATEGORY=Mathematics
 @FUNCTION=COS
- SEEALSO=SIN,TAN,SINH,COSH,TANH,RADIANS,DEGREES
 @SYNTAX=COS(x)
 @DESCRIPTION=This function is Excel compatible.
 @{x}: angle in radians
 
+ SEEALSO=SIN,TAN,SINH,COSH,TANH,RADIANS,DEGREES
+
 @CATEGORY=Mathematics
 @FUNCTION=COSH
 @SEEALSO=SIN,TAN,SINH,COSH,TANH,RADIANS,DEGREES
@@ -2339,20 +2916,34 @@ For metric units any of the following prefixes can be used:
 
 @CATEGORY=Mathematics
 @FUNCTION=EXP
+ SYNTAX=EXP(x)
+ DESCRIPTION= 
+ {x}: number
+ NOTE=e is the base of the natural logarithm.
 @SEEALSO=LOG, LOG2, LOG10
 
 @CATEGORY=Mathematics
 @FUNCTION=EXPM1
+ SYNTAX=EXPM1(x)
+ DESCRIPTION= 
+ {x}: number
+ NOTE=This function has a higher resulting precision than evaluating EXP(@{x})-1.
 @SEEALSO=EXP, LN1P
 
 @CATEGORY=Mathematics
 @FUNCTION=FACT
+ SYNTAX=FACT(x)
+ DESCRIPTION= 
+ {x}: number
+ NOTE=The domain of this function has been extended using the GAMMA function.
 
 @CATEGORY=Mathematics
 @FUNCTION=FACTDOUBLE
- SYNTAX=FACTDOUBLE(area0)
+ SYNTAX=FACTDOUBLE(x)
 @DESCRIPTION=FACTDOUBLE function returns the double factorial @{x}!!
- {area0}: first cell areax:non-negative integer
+ {x}: non-negative integer
+
+ NOTE=If @{x} is not an integer, it is truncated. If @{x} is negative, FACTDOUBLE returns #NUM!
 @SEEALSO=FACT
 
 @CATEGORY=Mathematics
@@ -2361,16 +2952,24 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=FIB(@{n}) is the @{n}th Fibonacci number.
 @{n}: positive integer
 
+ NOTE=If @{n} is not an integer, it is truncated. If it is negative or zero FIB returns #NUM!
+
 @CATEGORY=Mathematics
 @FUNCTION=FLOOR
 @SYNTAX=FLOOR(x,significance)
 @DESCRIPTION=FLOOR(@{x},@{significance}) is the nearest multiple of @{significance} whose absolute value is at most ABS(@{x})
 @{x}: number.
 @{significance}: base multiple (defaults to 1 for @{x} > 0 and -1 for @{x} <0)
+
 @SEEALSO=CEIL,CEILING,ABS,INT,MOD
 
 @CATEGORY=Mathematics
 @FUNCTION=G_PRODUCT
+ SYNTAX=G_PRODUCT(x1,x2)
+ DESCRIPTION= 
+ {x1}: number
+ {x2}: number
+ NOTE=Empty cells are ignored and the empty product is 1.
 @SEEALSO=SUM, COUNT
 
 @CATEGORY=Mathematics
@@ -2387,6 +2986,8 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=GCD calculates the greatest common divisor of the given numbers @{n0},@{n1},..., the greatest integer that is a divisor of each argument.
 @{n0}: positive integer
 @{n1}: positive integer
+
+ NOTE=If any of the arguments is not an integer, it is truncated.
 @SEEALSO=LCM
 
 @CATEGORY=Mathematics
@@ -2407,10 +3008,16 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=LCM calculates the least common multiple of the given numbers @{n0},@{n1},..., the smallest integer that is a multiple of each argment.
 @{n0}: positive integer
 @{n1}: positive integer
+
+ NOTE=If any of the arguments is not an integer, it is truncated.
 @SEEALSO=GCD
 
 @CATEGORY=Mathematics
 @FUNCTION=LN
+ SYNTAX=LN(x)
+ DESCRIPTION= 
+ {x}: positive number
+ NOTE=If @{x} â?¤ 0, LN returns #NUM! error.
 @SEEALSO=EXP,LOG2,LOG10
 
 @CATEGORY=Mathematics
@@ -2418,18 +3025,34 @@ For metric units any of the following prefixes can be used:
 @SYNTAX=LN1P(x)
 @DESCRIPTION=LN1P calculates LN(1+ {x}) but yielding a higher precision than evaluating LN(1+ {x}).
 @{x}: positive number
+
+ NOTE=If @{x} â?¤ -1, LN returns #NUM! error.
 @SEEALSO=EXP,LN,EXPM1
 
 @CATEGORY=Mathematics
 @FUNCTION=LOG
+ SYNTAX=LOG(x,base)
+ DESCRIPTION= 
+ {x}: positive number
+ {base}: base of the logarithm, defaults to 10
+ NOTE=@{base} must be positive and not equal to 1.
+ NOTE=If @{x} â?¤ 0, LOG returns #NUM! error.
 @SEEALSO=LN,LOG2,LOG10
 
 @CATEGORY=Mathematics
 @FUNCTION=LOG10
+ SYNTAX=LOG10(x)
+ DESCRIPTION= 
+ {x}: positive number
+ NOTE=If @{x} â?¤ 0, LOG10 returns #NUM!
 @SEEALSO=EXP,LOG2,LOG
 
 @CATEGORY=Mathematics
 @FUNCTION=LOG2
+ SYNTAX=LOG2(x)
+ DESCRIPTION= 
+ {x}: positive number
+ NOTE=If @{x} â?¤ 0, LOG2 returns #NUM!
 @SEEALSO=EXP,LOG10,LOG
 
 @CATEGORY=Mathematics
@@ -2438,6 +3061,11 @@ For metric units any of the following prefixes can be used:
 
 @CATEGORY=Mathematics
 @FUNCTION=MINVERSE
+ SYNTAX=MINVERSE(matrix)
+ DESCRIPTION= 
+ {matrix}: a square matrix
+ NOTE=If @{matrix} is not invertible, MINVERSE returns #NUM!
+ NOTE=If @{matrix} does not contain an equal number of columns and rows, MINVERSE returns #VALUE!
 @SEEALSO=MMULT, MDETERM
 
 @CATEGORY=Mathematics
@@ -2450,10 +3078,17 @@ For metric units any of the following prefixes can be used:
 @DESCRIPTION=MOD function returns the remainder when @{x} is divided by @{n}.
 @{x}: integer
 @{n}: integer
+
+ NOTE=If @{n} is 0, MOD returns #DIV/0!
 @SEEALSO=CEIL,CEILING,FLOOR,ABS,INT,ABS
 
 @CATEGORY=Mathematics
 @FUNCTION=MROUND
+ SYNTAX=MROUND(x,m)
+ DESCRIPTION= 
+ {x}: number
+ {m}: number
+ NOTE=If @{x} and @{m} have different sign, MROUND returns #NUM!
 @SEEALSO=ROUNDDOWN,ROUND,ROUNDUP
 
 @CATEGORY=Mathematics
@@ -2474,6 +3109,13 @@ For metric units any of the following prefixes can be used:
 
 @CATEGORY=Mathematics
 @FUNCTION=POWER
+ SYNTAX=POWER(x,y)
+ DESCRIPTION= 
+ {x}: number
+ {y}: number
+ NOTE=If both @{x} and @{y} equal 0, POWER returns #NUM!
+ NOTE=If @{x} = 0 and @{y} < 0, POWER returns #DIV/0!
+ NOTE=If @{x} < 0 and @{y} is not an integer, POWER returns #NUM!
 @SEEALSO=EXP
 
 @CATEGORY=Mathematics
@@ -2481,6 +3123,8 @@ For metric units any of the following prefixes can be used:
 @SYNTAX=PRODUCT(values)
 @DESCRIPTION=Product computes the product of all the values and cells referenced in the argument list.
 @{values}: a list of values to multiply
+
+ NOTE=If all cells are empty, the result will be 0.
 @SEEALSO=SUM,COUNT,G_PRODUCT
 
 @CATEGORY=Mathematics
@@ -2490,6 +3134,7 @@ For metric units any of the following prefixes can be used:
 QUOTIENT (@{numerator},@{denominator})� {denominator}+MOD(@{numerator},@{denominator})= {numerator}
 @{numerator}: integer
 @{denominator}: non-zero integer
+
 @SEEALSO=MOD
 
 @CATEGORY=Mathematics
@@ -2505,6 +3150,7 @@ Type 1 is more concise than classic type, type 2 is more concise than type 1, an
 @{n}: non-negative integer
 @{type}: 0,1,2,3,or 4, defaults to 0
 
+
 @CATEGORY=Mathematics
 @FUNCTION=ROUND
 @SYNTAX=ROUND(x,d)
@@ -2513,6 +3159,7 @@ If @{d} is zero, @{x} is rounded to the next integer.
 If @{d} is less than zero, @{x} is rounded to the left of the decimal point
 @{x}: number
 @{d}: integer, defaults to 0
+
 @SEEALSO=ROUNDDOWN,ROUNDUP
 
 @CATEGORY=Mathematics
@@ -2523,6 +3170,7 @@ If @{d} is zero, @{x} is rounded toward 0 to the next integer.
 If @{d} is less than zero, @{x} is rounded toward 0 to the left of the decimal point
 @{x}: number
 @{d}: integer, defaults to 0
+
 @SEEALSO=ROUND,ROUNDUP
 
 @CATEGORY=Mathematics
@@ -2533,6 +3181,7 @@ If @{d} is zero, @{x} is rounded away from 0 to the next integer.
 If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decimal point
 @{x}: number
 @{d}: integer, defaults to 0
+
 @SEEALSO=ROUND,ROUNDDOWN,INT
 
 @CATEGORY=Mathematics
@@ -2552,6 +3201,7 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @SYNTAX=SIGN(x)
 @DESCRIPTION=SIGN returns 1 if the @{x} is positive and it returns -1 if @{x} is negative.
 @{x}: number
+
 @SEEALSO=ABS
 
 @CATEGORY=Mathematics
@@ -2564,6 +3214,10 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 
 @CATEGORY=Mathematics
 @FUNCTION=SQRT
+ SYNTAX=SQRT(x)
+ DESCRIPTION= 
+ {x}: non-negative number
+ NOTE=If @{x} is negative, SQRT returns #NUM!
 @SEEALSO=POWER
 
 @CATEGORY=Mathematics
@@ -2575,6 +3229,7 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @SYNTAX=Sum(values)
 @DESCRIPTION=SUM computes the sum of all the values and cells referenced in the argument list.
 @{values}: a list of values to add
+
 @SEEALSO=AVERAGE,COUNT
 
 @CATEGORY=Mathematics
@@ -2583,6 +3238,7 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @DESCRIPTION=Numbers, text and logical values are included in the calculation too. If the cell contains text or the argument evaluates to FALSE, it is counted as value zero (0). If the argument evaluates to TRUE, it is counted as one (1).
 @{area0}: first cell area
 @{area1}: second cell area
+
 @SEEALSO=AVERAGE,SUM,COUNT
 
 @CATEGORY=Mathematics
@@ -2593,6 +3249,10 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @FUNCTION=SUMPRODUCT
 @SYNTAX=SUMPRODUCT()
 @DESCRIPTION=Multiplies corresponding data entries in the given arrays or ranges, and then returns the sum of those products.
+
+ NOTE=If an entry is not numeric, the value zero is used instead.
+ NOTE=If arrays or range arguments do not have the same dimensions, return #VALUE! error.
+ NOTE=SUMPRODUCTs arguments are arrays or ranges. Attempting to use A1:A5>0 will not work, implicit intersection will kick in. Instead use --(A1:A5>0)
 @SEEALSO=SUM,PRODUCT,G_PRODUCT
 
 @CATEGORY=Mathematics
@@ -2605,6 +3265,7 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @DESCRIPTION=SUMX2MY2 function returns the sum of the difference of squares of corresponding values in two arrays. The equation of SUMX2MY2 is SUM(x^2-y^2).
 @{array0}: first cell area
 @{array1}: second cell area
+
 @SEEALSO=SUMSQ,SUMX2PY2
 
 @CATEGORY=Mathematics
@@ -2613,6 +3274,9 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @DESCRIPTION=SUMX2PY2 function returns the sum of the sum of squares of corresponding values in two arrays. The equation of SUMX2PY2 is SUM(x^2+y^2).
 @{array0}: first cell area
 @{array1}: second cell area
+
+ NOTE=If @{array0} and @{array1} have different number of data points, SUMX2PY2 returns #N/A.
+Strings and empty cells are simply ignored.
 @SEEALSO=SUMSQ,SUMX2MY2
 
 @CATEGORY=Mathematics
@@ -2621,6 +3285,9 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @DESCRIPTION=SUMXMY2 function returns the sum of the squares of the differences of corresponding values in two arrays. The equation of SUMXMY2 is SUM((x-y)^2).
 @{array0}: first cell area
 @{array1}: second cell area
+
+ NOTE=If @{array0} and @{array1} have different number of data points, SUMXMY2 returns #N/A.
+Strings and empty cells are simply ignored.
 @SEEALSO=SUMSQ,SUMX2MY2,SUMX2PY2
 
 @CATEGORY=Mathematics
@@ -2633,6 +3300,11 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 
 @CATEGORY=Mathematics
 @FUNCTION=TRUNC
+ SYNTAX=TRUNC(x,x)
+ DESCRIPTION= 
+ {x}: number
+ {x}: non-negative integer, defaults to 0
+ NOTE=If @{d} is omitted or negative then it defaults to zero. If it is not an integer then it is truncated to an integer.
 @SEEALSO=INT
 
 @CATEGORY=Number Theory
@@ -2640,6 +3312,7 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @SYNTAX=ISPRIME(n)
 @DESCRIPTION=ISPRIME returns TRUE if @{n} is prime and FALSE otherwise.
 @{n}: positive integer
+
 @SEEALSO=NT_D, NT_SIGMA
 
 @CATEGORY=Number Theory
@@ -2647,6 +3320,7 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @SYNTAX=ITHPRIME(i)
 @DESCRIPTION=ITHPRIME finds the @{i}th prime.
 @{i}: positive integer
+
 @SEEALSO=NT_D,NT_SIGMA
 
 @CATEGORY=Number Theory
@@ -2654,6 +3328,7 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @SYNTAX=NT_D(n)
 @DESCRIPTION=NT_D calculates the number of divisors of @{n}.
 @{n}: positive integer
+
 @SEEALSO=ITHPRIME,NT_PHI,NT_SIGMA
 
 @CATEGORY=Number Theory
@@ -2661,10 +3336,15 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @SYNTAX=NT_MU(n)
 @DESCRIPTION=NT_MU function (Möbius mu function) returns 0  if @{n} is divisible by the square of a prime. Otherwise, if @{n} has an odd  number of different prime factors, NT_MU returns -1, and if @{n} has an even number of different prime factors, it returns 1. If @{n} = 1, NT_MU returns 1.
 @{n}: positive integer
+
 @SEEALSO=ITHPRIME,NT_PHI,NT_SIGMA,NT_D
 
 @CATEGORY=Number Theory
 @FUNCTION=NT_PHI
+ SYNTAX=NT_PHI(n)
+ DESCRIPTION= 
+ {n}: positive integer
+ NOTE=Euler's totient function gives the number of integers less than or equal to @{n} that are relatively prime (coprime) to @{n}.
 @SEEALSO=NT_D,ITHPRIME,NT_SIGMA
 
 @CATEGORY=Number Theory
@@ -2672,6 +3352,7 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @SYNTAX=NT_PI(n)
 @DESCRIPTION=NT_PI returns the number of primes less than or equal to @{n}.
 @{n}: positive integer
+
 @SEEALSO=ITHPRIME,NT_PHI,NT_D,NT_SIGMA
 
 @CATEGORY=Number Theory
@@ -2679,6 +3360,7 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @SYNTAX=NT_SIGMA(n)
 @DESCRIPTION=NT_SIGMA calculates the sum of the divisors of @{n}.
 @{n}: positive integer
+
 @SEEALSO=NT_D,ITHPRIME,NT_PHI
 
 @CATEGORY=Number Theory
@@ -2686,6 +3368,8 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @SYNTAX=PFACTOR(n)
 @DESCRIPTION=PFACTOR finds the smallest prime factor of its argument.
 @{n}: positive integer
+
+ NOTE=The argument @{n} must be at least 2. Otherwise a #VALUE! error is returned.
 @SEEALSO=ITHPRIME
 
 @CATEGORY=Random Numbers
@@ -2694,6 +3378,10 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 
 @CATEGORY=Random Numbers
 @FUNCTION=RANDBERNOULLI
+ SYNTAX=RANDBERNOULLI(p)
+ DESCRIPTION= 
+ {p}: probability of success
+ NOTE=If @{p} < 0 or @{p} > 1 RANDBERNOULLI returns #NUM!
 @SEEALSO=RAND,RANDBETWEEN
 
 @CATEGORY=Random Numbers
@@ -2702,14 +3390,29 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 
 @CATEGORY=Random Numbers
 @FUNCTION=RANDBETWEEN
+ SYNTAX=RANDBETWEEN(bottom,top)
+ DESCRIPTION= 
+ {bottom}: lower limit
+ {top}: upper limit
+ NOTE=If @{bottom} > @{top}, RANDBETWEEN returns #NUM!
 @SEEALSO=RAND,RANDUNIFORM
 
 @CATEGORY=Random Numbers
 @FUNCTION=RANDBINOM
+ SYNTAX=RANDBINOM(p,n)
+ DESCRIPTION= 
+ {p}: probability of success in a single trial
+ {n}: number of trials
+ NOTE=If @{p} < 0 or @{p} > 1 RANDBINOM returns #NUM!
+ NOTE=If @{n} < 0 RANDBINOM returns #NUM!
 @SEEALSO=RAND,RANDBETWEEN
 
 @CATEGORY=Random Numbers
 @FUNCTION=RANDCAUCHY
+ SYNTAX=RANDCAUCHY(a)
+ DESCRIPTION= 
+ {a}: scale parameter of the distribution
+ NOTE=If @{a} < 0 RANDCAUCHY returns #NUM!
 @SEEALSO=RAND
 
 @CATEGORY=Random Numbers
@@ -2722,6 +3425,10 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @DESCRIPTION=RANDDISCRETE returns one of the values in the @{val_range}. The probabilities for each value are given in the @{prob_range}.
 @{val_range}: possible values of the random variable
 @{prob_range}: probabilities of the corresponding values in @{val_range}, defaults to equal probabilities
+
+ NOTE=If the sum of all values in @{prob_range} is not one, RANDDISCRETE returns #NUM!
+ NOTE=If @{val_range} and @{prob_range} are not the same size, RANDDISCRETE returns #NUM!
+ NOTE=If @{val_range} or @{prob_range} is not a range, RANDDISCRETE returns #VALUE!
 @SEEALSO=RANDBETWEEN,RAND
 
 @CATEGORY=Random Numbers
@@ -2734,10 +3441,8 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @DESCRIPTION=For @{b} = 1 the exponential power distribution reduces to the Laplace distribution.
 @{a}: scale parameter of the exponential power distribution
 @{b}: exponent of the exponential power distribution
- SYNTAX=RANDEXPPOW(a,b))
+
 @DESCRIPTION=For @{b} = 2 the exponential power distribution reduces to the normal distribution with Ï? = a/sqrt(2)
- {a}: scale parameter of the exponential power distribution
- {b}: exponent of the exponential power distribution
 @SEEALSO=RAND
 
 @CATEGORY=Random Numbers
@@ -2746,14 +3451,29 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 
 @CATEGORY=Random Numbers
 @FUNCTION=RANDGAMMA
+ SYNTAX=RANDGAMMA(a,b)
+ DESCRIPTION= 
+ {a}: parameter of the Gamma distribution
+ {b}: parameter of the Gamma distribution
+ NOTE=If @{a} â?¤ 0, RANDGAMMA returns #NUM!
 @SEEALSO=RAND
 
 @CATEGORY=Random Numbers
 @FUNCTION=RANDGEOM
+ SYNTAX=RANDGEOM(p)
+ DESCRIPTION= 
+ {p}: probability of success in a single trial
+ NOTE=If @{p} < 0 or @{p} > 1 RANDGEOM returns #NUM!
 @SEEALSO=RAND
 
 @CATEGORY=Random Numbers
 @FUNCTION=RANDGUMBEL
+ SYNTAX=RANDGUMBEL(a,b,type)
+ DESCRIPTION= 
+ {a}: parameter of the Gumbel distribution
+ {b}: parameter of the Gumbel distribution
+ {type}: type of the Gumbel distribution, defaults to 1
+ NOTE=If @{type} is neither 1 nor 2, RANDGUMBEL returns #NUM!
 @SEEALSO=RAND
 
 @CATEGORY=Random Numbers
@@ -2775,15 +3495,18 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 @{c}: parameter of the Lévy distribution
 @{α}: parameter of the Lévy distribution
 @{β}: parameter of the Lévy distribution, defaults to 0
- SYNTAX=RANDLEVY(c,α,β))
+
 @DESCRIPTION=For @{α} = 2, @{β}=0, the Lévy distribution reduces to the normal distribution.
- {c}: parameter of the Lévy distribution
- {α}: parameter of the Lévy distribution
- {β}: parameter of the Lévy distribution, defaults to 0
+ NOTE=If @{α} � 0 or @{α} > 2, RANDLEVY returns #NUM!
+ NOTE=If @{β} < -1 or @{β} > 1, RANDLEVY returns #NUM!
 @SEEALSO=RAND
 
 @CATEGORY=Random Numbers
 @FUNCTION=RANDLOG
+ SYNTAX=RANDLOG(p)
+ DESCRIPTION= 
+ {p}: probability
+ NOTE=If @{p} < 0 or @{p} > 1 RANDLOG returns #NUM!
 @SEEALSO=RAND
 
 @CATEGORY=Random Numbers
@@ -2792,18 +3515,39 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 
 @CATEGORY=Random Numbers
 @FUNCTION=RANDLOGNORM
+ SYNTAX=RANDLOGNORM(ζ,Ï?)
+ DESCRIPTION= 
+ {ζ}: parameter of the lognormal distribution
+ {Ï?}: standard deviation of the distribution
+ NOTE=If @{Ï?} < 0, RANDLOGNORM returns #NUM!
 @SEEALSO=RAND
 
 @CATEGORY=Random Numbers
 @FUNCTION=RANDNEGBINOM
+ SYNTAX=RANDNEGBINOM(p,n)
+ DESCRIPTION= 
+ {p}: probability of success in a single trial
+ {n}: number of failures
+ NOTE=If @{p} < 0 or @{p} > 1 RANDNEGBINOM returns #NUM!
+ NOTE=If @{n} < 1 RANDNEGBINOM returns #NUM!
 @SEEALSO=RAND,RANDBETWEEN
 
 @CATEGORY=Random Numbers
 @FUNCTION=RANDNORM
+ SYNTAX=RANDNORM(μ,Ï?)
+ DESCRIPTION= 
+ {μ}: mean of the ditribution
+ {Ï?}: standard deviation of the distribution
+ NOTE=If @{Ï?} < 0, RANDNORM returns #NUM!
 @SEEALSO=RAND
 
 @CATEGORY=Random Numbers
 @FUNCTION=RANDNORMTAIL
+ SYNTAX=RANDNORMTAIL(a,Ï?)
+ DESCRIPTION= 
+ {a}: lower limit of the tail
+ {Ï?}: standard deviation of the normal distribution
+ NOTE=The method is based on Marsaglia's famous rectangle-wedge-tail algorithm (Ann Math Stat 32, 894-899 (1961)), with this aspect explained in Knuth, v2, 3rd ed, p139, 586 (exercise 11).
 @SEEALSO=RAND
 
 @CATEGORY=Random Numbers
@@ -2812,6 +3556,10 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 
 @CATEGORY=Random Numbers
 @FUNCTION=RANDPOISSON
+ SYNTAX=RANDPOISSON(λ)
+ DESCRIPTION= 
+ {λ}: parameter of the Poisson distribution
+ NOTE=If @{λ} < 0 RANDPOISSON returns #NUM!
 @SEEALSO=RAND,RANDBETWEEN
 
 @CATEGORY=Random Numbers
@@ -2828,6 +3576,11 @@ If @{d} is less than zero, @{x} is rounded away from 0 to the left of the decima
 
 @CATEGORY=Random Numbers
 @FUNCTION=RANDUNIFORM
+ SYNTAX=RANDUNIFORM(a,b)
+ DESCRIPTION= 
+ {a}: lower limit of the uniform distribution
+ {b}: upper limit of the uniform distribution
+ NOTE=If @{a} > @{b} RANDUNIFORM returns #NUM!
 @SEEALSO=RANDBETWEEN,RAND
 
 @CATEGORY=Random Numbers
@@ -2843,6 +3596,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{d1}: first value
 @{d2}: second value
 
+
 @CATEGORY=Statistics
 @FUNCTION=AVEDEV
 @SEEALSO=STDEV
@@ -2857,26 +3611,70 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=Numbers, text and logical values are included in the calculation too. If the cell contains text or the argument evaluates to FALSE, it is counted as value zero (0). If the argument evaluates to TRUE, it is counted as one (1). Note that empty cells are not counted.
 @{number1}: first value
 @{number2}: second value
+
 @SEEALSO=AVERAGE
 
 @CATEGORY=Statistics
 @FUNCTION=BERNOULLI
+ SYNTAX=BERNOULLI(k,p)
+ DESCRIPTION= 
+ {k}: 
+ {p}: probability of success
+ NOTE=If @{k} != 0 and @{k} != 1 this function returns a #NUM! error.
+ NOTE=If @{p} < 0 or @{p} > 1 this function returns a #NUM! error.
 @SEEALSO=RANDBERNOULLI
 
 @CATEGORY=Statistics
 @FUNCTION=BETADIST
+ SYNTAX=BETADIST(x,alpha,beta,a,b)
+ DESCRIPTION= 
+ {x}: 
+ {alpha}: scale parameter
+ {beta}: scale parameter
+ {a}: optional lower bound, defaults to 0
+ {b}: optional upper bound, defaults to 1
+ NOTE=If @{x} < @{a} or @{x} > @{b} this function returns a #NUM! error.
+ NOTE=If @{alpha} <= 0 or @{beta} <= 0, this function returns a #NUM! error.
+ NOTE=If @{a} >= @{b} this function returns a #NUM! error.
 @SEEALSO=BETAINV
 
 @CATEGORY=Statistics
 @FUNCTION=BETAINV
+ SYNTAX=BETAINV(p,alpha,beta,a,b)
+ DESCRIPTION= 
+ {p}: probability
+ {alpha}: scale parameter
+ {beta}: scale parameter
+ {a}: optional lower bound, defaults to 0
+ {b}: optional upper bound, defaults to 1
+ NOTE=If @{p} < 0 or @{p} > 1 this function returns a #NUM! error.
+ NOTE=If @{alpha} <= 0 or @{beta} <= 0, this function returns a #NUM! error.
+ NOTE=If @{a} >= @{b} this function returns a #NUM! error.
 @SEEALSO=BETADIST
 
 @CATEGORY=Statistics
 @FUNCTION=BINOMDIST
+ SYNTAX=BINOMDIST(n,trials,p,cumulative)
+ DESCRIPTION= 
+ {n}: number of successes
+ {trials}: number of trials
+ {p}: probability of success in each trial
+ {cumulative}: whether to evaluate the mass function or the cumulative distribution function
+ NOTE=If @{n} or @{trials} are non-integer they are truncated.
+ NOTE=If @{n} < 0 or @{trials} < 0 this function returns a #NUM! error.
+ NOTE=If @{n} > @{trials} this function returns a #NUM! error.
+ NOTE=If @{p} < 0 or @{p} > 1 this function returns a #NUM! error.
 @SEEALSO=POISSON
 
 @CATEGORY=Statistics
 @FUNCTION=CAUCHY
+ SYNTAX=CAUCHY(x,a,cumulative)
+ DESCRIPTION= 
+ {x}: 
+ {a}: scale parameter
+ {cumulative}: whether to evaluate the density function or the cumulative distribution function
+ NOTE=If @{a} < 0 this function returns a #NUM! error.
+ NOTE=If @{cumulative} is neither TRUE nor FALSE this function returns a #VALUE! error.
 @SEEALSO=RANDCAUCHY
 
 @CATEGORY=Statistics
@@ -2885,6 +3683,9 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=The survival function is 1 minus the cumulative distribution function.
 @{x}: 
 @{dof}: number of degrees of freedom
+
+ NOTE=If @{dof} is non-integer it is truncated.
+ NOTE=If @{dof} < 1 this function returns a #NUM! error.
 @SEEALSO=CHIINV,CHITEST
 
 @CATEGORY=Statistics
@@ -2893,14 +3694,30 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=The survival function is 1 minus the cumulative distribution function.
 @{p}: probability
 @{dof}: number of degrees of freedom
+
+ NOTE=If @{p} < 0 or @{p} > 1 or @{dof} < 1 this function returns a #NUM! error.
 @SEEALSO=CHIDIST,CHITEST
 
 @CATEGORY=Statistics
 @FUNCTION=CHITEST
+ SYNTAX=CHITEST(actual_range,theoretical_range)
+ DESCRIPTION= 
+ {actual_range}: observed data
+ {theoretical_range}: expected values
+ NOTE=If the actual range is not an n by 1 or 1 by n range, the returned value appears to have no sensible meaning.
 @SEEALSO=CHIDIST,CHIINV
 
 @CATEGORY=Statistics
 @FUNCTION=CONFIDENCE
+ SYNTAX=CONFIDENCE(alpha,stddev,size)
+ DESCRIPTION= 
+ {alpha}: significance level
+ {stddev}: population standard deviation
+ {size}: sample size
+ NOTE=This function requires the usually unknown population standard deviation.
+ NOTE=If @{size} is non-integer it is truncated.
+ NOTE=If @{size} < 0 this function returns a #NUM! error.
+ NOTE=If @{size} is 0 this function returns a #DIV/0! error.
 @SEEALSO=AVERAGE
 
 @CATEGORY=Statistics
@@ -2909,6 +3726,7 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=Strings and empty cells are simply ignored.
 @{array1}: first data set
 @{array2}: second data set
+
 @SEEALSO=COVAR,FISHER,FISHERINV
 
 @CATEGORY=Statistics
@@ -2925,14 +3743,25 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=Strings and empty cells are simply ignored.
 @{array1}: first data set
 @{array2}: set data set
+
 @SEEALSO=CORREL,FISHER,FISHERINV
 
 @CATEGORY=Statistics
 @FUNCTION=CRITBINOM
+ SYNTAX=CRITBINOM(trials,p,alpha)
+ DESCRIPTION= 
+ {trials}: number of trials
+ {p}: probability of success in each trial
+ {alpha}: significance level (area of the tail)
+ NOTE=If @{trials} is a non-integer it is truncated.
+ NOTE=If @{trials} < 0 this function returns a #NUM! error.
+ NOTE=If @{p} < 0 or @{p} > 1 this function returns a #NUM! error.
+ NOTE=If @{alpha} < 0 or @{alpha} > 1 this function returns a #NUM! error.
 @SEEALSO=BINOMDIST
 
 @CATEGORY=Statistics
 @FUNCTION=CRONBACH
+ SEEALSO=VAR
 
 @CATEGORY=Statistics
 @FUNCTION=DEVSQ
@@ -2940,6 +3769,7 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=Strings and empty cells are simply ignored.
 @{number1}: first value
 @{number2}: second value
+
 @SEEALSO=STDEV
 
 @CATEGORY=Statistics
@@ -2949,6 +3779,8 @@ The successive use of the simulation tool also requires that you give to the too
 @{x}: 
 @{y}: scale parameter
 @{cumulative}: whether to evaluate the density function or the cumulative distribution function
+
+ NOTE=If @{x} < 0 or @{y} <= 0 this will return an error.
 @SEEALSO=POISSON
 
 @CATEGORY=Statistics
@@ -2958,6 +3790,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{x}: 
 @{a}: scale parameter
 @{b}: scale parameter
+
 @SEEALSO=RANDEXPPOW
 
 @CATEGORY=Statistics
@@ -2967,6 +3800,9 @@ The successive use of the simulation tool also requires that you give to the too
 @{x}: 
 @{dof_of_num}: numerator degrees of freedom
 @{dof_of_denom}: denominator degrees of freedom
+
+ NOTE=If @{x} < 0 this function returns a #NUM! error.
+ NOTE=If @{dof_of_num} < 1 or @{dof_of_denom} < 1, this function returns a #NUM! error.
 @SEEALSO=FINV
 
 @CATEGORY=Statistics
@@ -2976,14 +3812,26 @@ The successive use of the simulation tool also requires that you give to the too
 @{p}: probability
 @{dof_of_num}: numerator degrees of freedom
 @{dof_of_denom}: denomiantor degrees of freedom
+
+ NOTE=If @{p} < 0 or @{p} > 1 this function returns a #NUM! error.
+ NOTE=If @{dof_of_num} < 1 or @{dof_of_denom} < 1 this function returns a #NUM! error.
 @SEEALSO=FDIST
 
 @CATEGORY=Statistics
 @FUNCTION=FISHER
+ SYNTAX=FISHER(x)
+ DESCRIPTION= 
+ {x}: 
+ NOTE=If @{x} is not a number, this function returns a #VALUE! error.
+ NOTE=If @{x} <= -1 or @{x} >= 1, this function returns a #NUM! error.
 @SEEALSO=FISHERINV,ATANH
 
 @CATEGORY=Statistics
 @FUNCTION=FISHERINV
+ SYNTAX=FISHERINV(x)
+ DESCRIPTION= 
+ {x}: 
+ NOTE=If @{x} is a non-number this function returns a #VALUE! error.
 @SEEALSO=FISHER,TANH
 
 @CATEGORY=Statistics
@@ -2993,6 +3841,9 @@ The successive use of the simulation tool also requires that you give to the too
 @{x}: x-value whose matching y-value should be forecast
 @{known_y's}: known y-values
 @{known_x's}: known x-values
+
+ NOTE=If @{known_x} or @{known_y} contains no data entries or different number of data entries, this function returns a #N/A error.
+ NOTE=If the variance of the @{known_x} is zero, this function returns a #DIV/0 error.
 @SEEALSO=INTERCEPT,TREND
 
 @CATEGORY=Statistics
@@ -3001,10 +3852,8 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=The results are given as an array.
 @{data_array}: data values
 @{bins_array}: array of cutoff values
- SYNTAX=FREQUENCY(data_array,bins_array))
+
 @DESCRIPTION=If the @{bin_array} is empty, this function returns the number of data points in @{data_array}.
- {data_array}: data values
- {bins_array}: array of cutoff values
 
 @CATEGORY=Statistics
 @FUNCTION=FTEST
@@ -3012,14 +3861,37 @@ The successive use of the simulation tool also requires that you give to the too
 
 @CATEGORY=Statistics
 @FUNCTION=GAMMADIST
+ SYNTAX=GAMMADIST(x,alpha,beta,cumulative)
+ DESCRIPTION= 
+ {x}: 
+ {alpha}: scale parameter
+ {beta}: scale parameter
+ {cumulative}: whether to evaluate the density function or the cumulative distribution function
+ NOTE=If @{x} < 0 this function returns a #NUM! error.
+ NOTE=If @{alpha} <= 0 or @{beta} <= 0, this function returns a #NUM! error.
 @SEEALSO=GAMMAINV
 
 @CATEGORY=Statistics
 @FUNCTION=GAMMAINV
+ SYNTAX=GAMMAINV(p,alpha,beta)
+ DESCRIPTION= 
+ {p}: probability
+ {alpha}: scale parameter
+ {beta}: scale parameter
+ NOTE=If @{p} < 0 or @{p} > 1 this function returns a #NUM! error.
+ NOTE=If @{alpha} <= 0 or @{beta} <= 0 this function returns a #NUM! error.
 @SEEALSO=GAMMADIST
 
 @CATEGORY=Statistics
 @FUNCTION=GEOMDIST
+ SYNTAX=GEOMDIST(k,p,cumulative)
+ DESCRIPTION= 
+ {k}: number of trials
+ {p}: probability of success in any trial
+ {cumulative}: whether to evaluate the mass function or the cumulative distribution function
+ NOTE=If @{k} < 0 this function returns a #NUM! error.
+ NOTE=If @{p} < 0 or @{p} > 1 this function returns a #NUM! error.
+ NOTE=If @{cumulative} is neither TRUE nor FALSE this function returns a #VALUE! error.
 @SEEALSO=RANDGEOM
 
 @CATEGORY=Statistics
@@ -3028,6 +3900,7 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=The geometric mean is equal to the Nth root of the product of the N values.
 @{number1}: first value
 @{number2}: second value
+
 @SEEALSO=AVERAGE,HARMEAN,MEDIAN,MODE,TRIMMEAN
 
 @CATEGORY=Statistics
@@ -3038,12 +3911,9 @@ The successive use of the simulation tool also requires that you give to the too
 @{known_x's}: known x-values; if @{known_x}'s is omitted, an array {1, 2, 3, ...} is used.
 @{new_x's}: x-values for which you want to estimate the y-values; defaults to @{known_x}'s
 @{const}: if this is false the line will be forced to go through the origin; defaults to TRUE
- SYNTAX=GROWTH(known_y's,known_x's,new_x's,const))
+
 @DESCRIPTION=GROWTH returns an array having one column and a row for each data point in @{new_x}.
- {known_y's}: known y-values
- {known_x's}: known x-values; if @{known_x}'s is omitted, an array {1, 2, 3, ...} is used.
- {new_x's}: x-values for which you want to estimate the y-values; defaults to @{known_x}'s
- {const}: if this is false the line will be forced to go through the origin; defaults to TRUE
+ NOTE=If @{known_y}'s and @{known_x}'s have unequal number of data points, this function returns a #NUM! error.
 @SEEALSO=LOGEST,GROWTH,TREND
 
 @CATEGORY=Statistics
@@ -3052,14 +3922,31 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=The harmonic mean of N data points is  N divided by the sum of the reciprocals of the data points).
 @{number1}: first value
 @{number2}: second value
+
 @SEEALSO=AVERAGE,GEOMEAN,MEDIAN,MODE,TRIMMEAN
 
 @CATEGORY=Statistics
 @FUNCTION=HYPGEOMDIST
+ SYNTAX=HYPGEOMDIST(x,n,M,N,cumulative)
+ DESCRIPTION= 
+ {x}: number of successes
+ {n}: sample size
+ {M}: number of possible successes in the population
+ {N}: population size
+ {cumulative}: whether to evaluate the mass function or the cumulative distribution function
+ NOTE=If @{x},@{n},@{M} or @{N} is a non-integer it is truncated.
+ NOTE=If @{x},@{n},@{M} or @{N} < 0 this function returns a #NUM! error.
+ NOTE=If @{x} > @{M} or @{n} > @{N} this function returns a #NUM! error.
 @SEEALSO=BINOMDIST,POISSON
 
 @CATEGORY=Statistics
 @FUNCTION=INTERCEPT
+ SYNTAX=INTERCEPT(known_y's,known_x's)
+ DESCRIPTION= 
+ {known_y's}: known y-values
+ {known_x's}: known x-values
+ NOTE=If @{known_x} or @{known_y} contains no data entries or different number of data entries, this function returns a #N/A error.
+ NOTE=If the variance of the @{known_x} is zero, this function returns #DIV/0 error.
 @SEEALSO=FORECAST,TREND
 
 @CATEGORY=Statistics
@@ -3068,6 +3955,9 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=Strings and empty cells are simply ignored.
 @{number1}: first value
 @{number2}: second value
+
+ NOTE=This is only meaningful if the underlying distribution really has a fourth moment.  The kurtosis is offset by three such that a normal distribution will have zero kurtosis.
+ NOTE=If fewer than four numbers are given or all of them are equal this function returns a #DIV/0! error.
 @SEEALSO=AVERAGE,VAR,SKEW,KURTP
 
 @CATEGORY=Statistics
@@ -3076,6 +3966,8 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=Strings and empty cells are simply ignored.
 @{number1}: first value
 @{number2}: second value
+
+ NOTE=If fewer than two numbers are given or all of them are equal this function returns a #DIV/0! error.
 @SEEALSO=AVERAGE,VARP,SKEWP,KURT
 
 @CATEGORY=Statistics
@@ -3088,6 +3980,12 @@ The successive use of the simulation tool also requires that you give to the too
 
 @CATEGORY=Statistics
 @FUNCTION=LARGE
+ SYNTAX=LARGE(data,k)
+ DESCRIPTION= 
+ {data}: data set
+ {k}: which value to find
+ NOTE=If data set is empty this function returns a #NUM! error.
+ NOTE=If @{k} <= 0 or @{k} is greater than the number of data items given this function returns a #NUM! error.
 @SEEALSO=PERCENTILE,PERCENTRANK,QUARTILE,SMALL
 
 @CATEGORY=Statistics
@@ -3098,18 +3996,10 @@ The successive use of the simulation tool also requires that you give to the too
 @{known_x's}: array of values of independent variables, defaults to a single vector 1,...,n.
 @{affine}: if true, the model contains a constant term, defaults to true.
 @{stats}: if true, some additional statistics are provided, defaults to false
- SYNTAX=LINEST(known_y's,known_x's,affine,stats))
+
 @DESCRIPTION=If @{stats} is true, the second row contains the corresponding standard errors of the regression coefficients.In this case, the third row contains the R^2 value and the standard error for the predicted value. The fourth row contains the observed F value and its degrees of freedom. Finally, the fifth row contains the regression sum of squares and the residual sum of squares.
- {known_y's}: vector of values of dependent variable.
- {known_x's}: array of values of independent variables, defaults to a single vector 1,...,n.
- {affine}: if true, the model contains a constant term, defaults to true.
- {stats}: if true, some additional statistics are provided, defaults to false
- SYNTAX=LINEST(known_y's,known_x's,affine,stats)))
 @DESCRIPTION=If @{affine} is false, R^2 is the uncentered version of the coefficient of determination; that is the proportion of the sum of squares explained by the model.
- {known_y's}: vector of values of dependent variable.
- {known_x's}: array of values of independent variables, defaults to a single vector 1,...,n.
- {affine}: if true, the model contains a constant term, defaults to true.
- {stats}: if true, some additional statistics are provided, defaults to false
+ NOTE=If the length of @{known_y's} does not match the corresponding length of @{known_x's}, this function returns a #NUM! error.
 @SEEALSO=LOGEST,TREND
 
 @CATEGORY=Statistics
@@ -3120,12 +4010,10 @@ The successive use of the simulation tool also requires that you give to the too
 @{known_x's}: known x-values; if @{known_x}'s is omitted, an array {1, 2, 3, ...} is used.
 @{const}: if this is false the line will be forced to go through (0,1); defaults to TRUE
 @{stat}: If @{stat} is TRUE, extra statistical information will be returned; defaults to FALSE.
- SYNTAX=LOGEST(known_y's,known_x's,const,stat))
+
 @DESCRIPTION=LOGEST returns an array { m{n},m{n-1}, ...,m{1},b }.
- {known_y's}: known y-values
- {known_x's}: known x-values; if @{known_x}'s is omitted, an array {1, 2, 3, ...} is used.
- {const}: if this is false the line will be forced to go through (0,1); defaults to TRUE
- {stat}: If @{stat} is TRUE, extra statistical information will be returned; defaults to FALSE.
+ NOTE=Extra statistical information is written below the regression line coefficients in the result array.  Extra statistical information consists of four rows of data.  In the first row the standard error values for the coefficients m1, (m2, ...), b are represented.  The second row contains the square of R and the standard error for the y estimate.  The third row contains the F-observed value and the degrees of freedom.  The last row contains the regression sum of squares and the residual sum of squares.
+ NOTE=If @{known_y}'s and @{known_x}'s have unequal number of data points, this function returns a #NUM! error.
 @SEEALSO=GROWTH,TREND
 
 @CATEGORY=Statistics
@@ -3134,14 +4022,21 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=LOGFIT function applies the ``least squares'' method to fit the logarithmic equationy = a + b * ln(sign * (x - c)) ,   sign = +1 or -1 to your data. The graph of the equation is a logarithmic curve moved horizontally by c and possibly mirrored across the y-axis (if sign = -1).
 @{known_y's}: known y-values
 @{known_x's}: known x-values
- SYNTAX=LOGFIT(known_y's,known_x's))
+
 @DESCRIPTION=LOGFIT returns an array having five columns and one row. `Sign' is given in the first column, `a', `b', and `c' are given in columns 2 to 4. Column 5 holds the sum of squared residuals.
- {known_y's}: known y-values
- {known_x's}: known x-values
+ NOTE=An error is returned when there are less than 3 different x's or y's, or when the shape of the point cloud is too different from a ``logarithmic'' one.
+ NOTE=You can use the above formula = a + b * ln(sign * (x - c)) or rearrange it to = (exp((y - a) / b)) / sign + c to compute unknown y's or x's, respectively. 
+ NOTE=This is non-linear fitting by trial-and-error. The accuracy of `c' is: width of x-range -> rounded to the next smaller (10^integer), times 0.000001. There might be cases in which the returned fit is not the best possible.
 @SEEALSO=LOGREG,LINEST,LOGEST
 
 @CATEGORY=Statistics
 @FUNCTION=LOGINV
+ SYNTAX=LOGINV(p,mean,stddev)
+ DESCRIPTION= 
+ {p}: probability
+ {mean}: mean
+ {stddev}: standard deviation
+ NOTE=If @{p} < 0 or @{p} > 1 or @{stddev} <= 0 this function returns #NUM! error.
 @SEEALSO=EXP,LN,LOG,LOG10,LOGNORMDIST
 
 @CATEGORY=Statistics
@@ -3150,6 +4045,13 @@ The successive use of the simulation tool also requires that you give to the too
 
 @CATEGORY=Statistics
 @FUNCTION=LOGNORMDIST
+ SYNTAX=LOGNORMDIST(x,mean,stddev)
+ DESCRIPTION= 
+ {x}: 
+ {mean}: mean
+ {stddev}: standard deviation
+ NOTE=If @{stddev} = 0 LOGNORMDIST returns a #DIV/0! error.
+ NOTE=If @{x} <= 0, @{mean} < 0 or @{stddev} <= 0 this function returns a #NUM! error.
 @SEEALSO=NORMDIST
 
 @CATEGORY=Statistics
@@ -3160,12 +4062,9 @@ The successive use of the simulation tool also requires that you give to the too
 @{known_x's}: known x-values; if @{known_x}'s is omitted, an array {1, 2, 3, ...} is used.
 @{const}: If this is FALSE, the curve will be forced to go through [1; 0], i.e., b will be zero. The default is TRUE.
 @{stat}: If @{stat} is TRUE, extra statistical information will be returned; defaults to FALSE.
- SYNTAX=LOGREG(known_y's,known_x's,const,stat))
+
 @DESCRIPTION=Any extra statistical information is written below m and b in the result array.  This extra statistical information consists of four rows of data:  In the first row the standard error values for the coefficients m, b are given.  The second row contains the square of R and the standard error for the y estimate. The third row contains the F-observed value and the degrees of freedom.  The last row contains the regression sum of squares and the residual sum of squares.The default of @{stat} is FALSE.
- {known_y's}: known y-values
- {known_x's}: known x-values; if @{known_x}'s is omitted, an array {1, 2, 3, ...} is used.
- {const}: If this is FALSE, the curve will be forced to go through [1; 0], i.e., b will be zero. The default is TRUE.
- {stat}: If @{stat} is TRUE, extra statistical information will be returned; defaults to FALSE.
+ NOTE=If @{known_y}'s and @{known_x}'s have unequal number of data points, this function returns a #NUM! error.
 @SEEALSO=LOGFIT,LINEST,LOGEST
 
 @CATEGORY=Statistics
@@ -3178,6 +4077,7 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=Numbers, text and logical values are included in the calculation too. If the cell contains text or the argument evaluates to FALSE, it is counted as value zero (0). If the argument evaluates to TRUE, it is counted as one (1). Note that empty cells are not counted.
 @{number1}: first value
 @{number2}: second value
+
 @SEEALSO=MAX,MINA
 
 @CATEGORY=Statistics
@@ -3186,6 +4086,8 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=Strings and empty cells are simply ignored.
 @{number1}: first value
 @{number2}: second value
+
+ NOTE=If even numbers are given MEDIAN returns the average of the two numbers in the center.
 @SEEALSO=AVERAGE,COUNT,COUNTA,DAVERAGE,MODE,SSMEDIAN,SUM
 
 @CATEGORY=Statistics
@@ -3198,6 +4100,7 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=Numbers, text and logical values are included in the calculation too. If the cell contains text or the argument evaluates to FALSE, it is counted as value zero (0). If the argument evaluates to TRUE, it is counted as one (1). Note that empty cells are not counted.
 @{number1}: first value
 @{number2}: second value
+
 @SEEALSO=MIN,MAXA
 
 @CATEGORY=Statistics
@@ -3206,22 +4109,41 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=Strings and empty cells are simply ignored.
 @{number1}: first value
 @{number2}: second value
- SYNTAX=MODE(number1,number2))
+
 @DESCRIPTION=If the data set does not contain any duplicates this function returns a #N/A error.
- {number1}: first value
- {number2}: second value
 @SEEALSO=AVERAGE,MEDIAN
 
 @CATEGORY=Statistics
 @FUNCTION=NEGBINOMDIST
+ SYNTAX=NEGBINOMDIST(f,t,p)
+ DESCRIPTION= 
+ {f}: number of failures
+ {t}: threshold number of successes
+ {p}: probability of a success
+ NOTE=If @{f} or @{t} is a non-integer it is truncated.
+ NOTE=If (@{f} + @{t} -1) <= 0 this function returns a #NUM! error.
+ NOTE=If @{p} < 0 or @{p} > 1 this functions returns a #NUM! error.
 @SEEALSO=BINOMDIST,COMBIN,FACT,HYPGEOMDIST,PERMUT
 
 @CATEGORY=Statistics
 @FUNCTION=NORMDIST
+ SYNTAX=NORMDIST(x,mean,stddev,cumulative)
+ DESCRIPTION= 
+ {x}: 
+ {mean}: mean of the distribution
+ {stddev}: standard deviation of the distribution
+ {cumulative}: whether to evaluate the density function or the cumulative distribution function
+ NOTE=If @{stddev} is 0 this function returns a #DIV/0! error.
 @SEEALSO=POISSON
 
 @CATEGORY=Statistics
 @FUNCTION=NORMINV
+ SYNTAX=NORMINV(p,mean,stddev)
+ DESCRIPTION= 
+ {p}: probability
+ {mean}: mean of the distribution
+ {stddev}: standard deviation of the distribution
+ NOTE=If @{p} < 0 or @{p} > 1 or @{stddev} <= 0 this function returns a #NUM! error.
 @SEEALSO=NORMDIST,NORMSDIST,NORMSINV,STANDARDIZE,ZTEST
 
 @CATEGORY=Statistics
@@ -3230,6 +4152,10 @@ The successive use of the simulation tool also requires that you give to the too
 
 @CATEGORY=Statistics
 @FUNCTION=NORMSINV
+ SYNTAX=NORMSINV(p)
+ DESCRIPTION= 
+ {p}: given probability
+ NOTE=If @{p} < 0 or @{p} > 1 this function returns #NUM! error.
 @SEEALSO=NORMDIST,NORMINV,NORMSDIST,STANDARDIZE,ZTEST
 
 @CATEGORY=Statistics
@@ -3242,34 +4168,87 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=Strings and empty cells are simply ignored.
 @{array1}: first component values
 @{array2}: second component values
+
 @SEEALSO=INTERCEPT,LINEST,RSQ,SLOPE,STEYX
 
 @CATEGORY=Statistics
 @FUNCTION=PERCENTILE
+ SYNTAX=PERCENTILE(array,k)
+ DESCRIPTION= 
+ {array}: data points
+ {k}: which percentile to calculate
+ NOTE=If @{array} is empty, this function returns a #NUM! error.
+ NOTE=If @{k} < 0 or @{k} > 1, this function returns a #NUM! error.
 @SEEALSO=QUARTILE
 
 @CATEGORY=Statistics
 @FUNCTION=PERCENTRANK
+ SYNTAX=PERCENTRANK(array,x,significance)
+ DESCRIPTION= 
+ {array}: range of numeric values
+ {x}: data point to be ranked
+ {significance}: number of significant digits, defaults to 3
+ NOTE=If @{array} contains no data points, this function returns a #NUM! error.
+ NOTE=If @{significance} is less than one, this function returns a #NUM! error.
+ NOTE=If @{x} exceeds the largest value or is less than the smallest value in @{array}, this function returns a #NUM! error.
+ NOTE=If @{x} does not match any of the values in @{array} or @{x} matches more than once, this function interpolates the returned value.
 @SEEALSO=LARGE,MAX,MEDIAN,MIN,PERCENTILE,QUARTILE,SMALL
 
 @CATEGORY=Statistics
 @FUNCTION=PERMUT
+ SYNTAX=PERMUT(n,k)
+ DESCRIPTION= 
+ {n}: size of the base set
+ {k}: number of elements in each permutation
+ NOTE=If @{n} = 0 this function returns a #NUM! error.
+ NOTE=If @{n} < @{k} this function returns a #NUM! error.
 @SEEALSO=COMBIN
 
 @CATEGORY=Statistics
 @FUNCTION=PERMUTATIONA
+ SYNTAX=PERMUTATIONA(x,y)
+ DESCRIPTION= 
+ {x}: total number of objects
+ {y}: number of selected objects
+ NOTE=If both @{x} and @{y} equal 0, PERMUTATIONA returns 1.
+ NOTE=If @{x} < 0 or @{y} < 0, PERMUTATIONA returns #NUM!
+ NOTE=If @{x} or @{y} are not integers, they are truncated
 @SEEALSO=POWER
 
 @CATEGORY=Statistics
 @FUNCTION=POISSON
+ SYNTAX=POISSON(x,mean,cumulative)
+ DESCRIPTION= 
+ {x}: number of events
+ {mean}: mean of the distribution
+ {cumulative}: whether to evaluate the mass function or the cumulative distribution function
+ NOTE=If @{x} is a non-integer it is truncated.
+ NOTE=If @{x} < 0 this function returns a #NUM! error.
+ NOTE=If @{mean} <= 0 POISSON returns the #NUM! error.
 @SEEALSO=NORMDIST,WEIBULL
 
 @CATEGORY=Statistics
 @FUNCTION=PROB
+ SYNTAX=PROB(x_range,prob_range,lower_limit,upper_limit)
+ DESCRIPTION= 
+ {x_range}: possible values
+ {prob_range}: probabilities of the corresponding values
+ {lower_limit}: lower interval limit
+ {upper_limit}: upper interval limit, defaults to @{lower_limit}
+ NOTE=If the sum of the probabilities in @{prob_range} is not equal to 1 this function returns a #NUM! error.
+ NOTE=If any value in @{prob_range} is <=0 or > 1, this function returns a #NUM! error.
+ NOTE=If @{x_range} and @{prob_range} contain a different number of data entries, this function returns a #N/A error.
 @SEEALSO=BINOMDIST,CRITBINOM
 
 @CATEGORY=Statistics
 @FUNCTION=QUARTILE
+ SYNTAX=QUARTILE(array,quart)
+ DESCRIPTION= 
+ {array}: data points
+ {quart}: A number from 0 to 4, indicating which quartile to calculate. A value of 0 causes the smallest value of @{array} to be returned.
+ NOTE=If @{array} is empty, this function returns a #NUM! error.
+ NOTE=If @{quart} < 0 or @{quart} > 4, this function returns a #NUM! error.
+ NOTE=If @{quart} is not an integer, it is truncated.
 @SEEALSO=LARGE,MAX,MEDIAN,MIN,PERCENTILE,SMALL
 
 @CATEGORY=Statistics
@@ -3280,6 +4259,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{a}: the first shape parameter of the distribution
 @{b}: the second scale parameter of the distribution
 @{give_log}: if true, log of the result will be returned instead
+
 @SEEALSO=R.PBETA,R.QBETA
 
 @CATEGORY=Statistics
@@ -3290,6 +4270,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{n}: the number of trials
 @{psuc}: the probability of success in each trial
 @{give_log}: if true, log of the result will be returned instead
+
 @SEEALSO=R.PBINOM,R.QBINOM
 
 @CATEGORY=Statistics
@@ -3300,6 +4281,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{location}: the center of the distribution
 @{scale}: the scale parameter of the distribution
 @{give_log}: if true, log of the result will be returned instead
+
 @SEEALSO=R.PCAUCHY,R.QCAUCHY
 
 @CATEGORY=Statistics
@@ -3309,6 +4291,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{x}: observation
 @{df}: the number of degrees of freedom of the distribution
 @{give_log}: if true, log of the result will be returned instead
+
 @SEEALSO=R.PCHISQ,R.QCHISQ
 
 @CATEGORY=Statistics
@@ -3318,6 +4301,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{x}: observation
 @{scale}: the scale parameter of the distribution
 @{give_log}: if true, log of the result will be returned instead
+
 @SEEALSO=R.PEXP,R.QEXP
 
 @CATEGORY=Statistics
@@ -3328,6 +4312,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{n1}: the first number of degrees of freedom of the distribution
 @{n2}: the second number of degrees of freedom of the distribution
 @{give_log}: if true, log of the result will be returned instead
+
 @SEEALSO=R.PF,R.QF
 
 @CATEGORY=Statistics
@@ -3338,6 +4323,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{shape}: the shape parameter of the distribution
 @{scale}: the scale parameter of the distribution
 @{give_log}: if true, log of the result will be returned instead
+
 @SEEALSO=R.PGAMMA,R.QGAMMA
 
 @CATEGORY=Statistics
@@ -3347,6 +4333,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{x}: observation
 @{psuc}: the probability of success in each trial
 @{give_log}: if true, log of the result will be returned instead
+
 @SEEALSO=R.PGEOM,R.QGEOM
 
 @CATEGORY=Statistics
@@ -3358,6 +4345,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{b}: the number of black balls
 @{n}: the number of balls drawn
 @{give_log}: if true, log of the result will be returned instead
+
 @SEEALSO=R.PHYPER,R.QHYPER
 
 @CATEGORY=Statistics
@@ -3368,6 +4356,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{logmean}: mean of the underlying normal distribution
 @{logsd}: standard deviation of the underlying normal distribution
 @{give_log}: if true, log of the result will be returned instead
+
 @SEEALSO=R.PLNORM,R.QLNORM
 
 @CATEGORY=Statistics
@@ -3378,6 +4367,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{n}: the number of trials
 @{psuc}: the probability of success in each trial
 @{give_log}: if true, log of the result will be returned instead
+
 @SEEALSO=R.PNBINOM,R.QNBINOM
 
 @CATEGORY=Statistics
@@ -3388,6 +4378,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{mu}: mean of the distribution
 @{sigma}: standard deviation of the distribution
 @{give_log}: if true, log of the result will be returned instead
+
 @SEEALSO=R.PNORM,R.QNORM
 
 @CATEGORY=Statistics
@@ -3397,6 +4388,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{x}: observation
 @{lambda}: the mean of the distribution
 @{give_log}: if true, log of the result will be returned instead
+
 @SEEALSO=R.PPOIS,R.QPOIS
 
 @CATEGORY=Statistics
@@ -3406,6 +4398,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{x}: observation
 @{n}: the number of degrees of freedom of the distribution
 @{give_log}: if true, log of the result will be returned instead
+
 @SEEALSO=R.PT,R.QT
 
 @CATEGORY=Statistics
@@ -3416,6 +4409,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{shape}: the shape parameter of the distribution
 @{scale}: the scale parameter of the distribution
 @{give_log}: if true, log of the result will be returned instead
+
 @SEEALSO=R.PWEIBULL,R.QWEIBULL
 
 @CATEGORY=Statistics
@@ -3427,6 +4421,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{b}: the second scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DBETA,R.QBETA
 
 @CATEGORY=Statistics
@@ -3438,6 +4433,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{psuc}: the probability of success in each trial
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DBINOM,R.QBINOM
 
 @CATEGORY=Statistics
@@ -3449,6 +4445,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DCAUCHY,R.QCAUCHY
 
 @CATEGORY=Statistics
@@ -3459,6 +4456,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{df}: the number of degrees of freedom of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DCHISQ,R.QCHISQ
 
 @CATEGORY=Statistics
@@ -3469,6 +4467,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DEXP,R.QEXP
 
 @CATEGORY=Statistics
@@ -3480,6 +4479,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{n2}: the second number of degrees of freedom of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DF,R.QF
 
 @CATEGORY=Statistics
@@ -3491,6 +4491,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DGAMMA,R.QGAMMA
 
 @CATEGORY=Statistics
@@ -3501,6 +4502,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{psuc}: the probability of success in each trial
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DGEOM,R.QGEOM
 
 @CATEGORY=Statistics
@@ -3513,6 +4515,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{n}: the number of balls drawn
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DHYPER,R.QHYPER
 
 @CATEGORY=Statistics
@@ -3524,6 +4527,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{logsd}: standard deviation of the underlying normal distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DLNORM,R.QLNORM
 
 @CATEGORY=Statistics
@@ -3535,6 +4539,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{psuc}: the probability of success in each trial
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DNBINOM,R.QNBINOM
 
 @CATEGORY=Statistics
@@ -3546,6 +4551,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{sigma}: standard deviation of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DNORM,R.QNORM
 
 @CATEGORY=Statistics
@@ -3556,6 +4562,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{lambda}: the mean of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DPOIS,R.QPOIS
 
 @CATEGORY=Statistics
@@ -3566,6 +4573,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{n}: the number of degrees of freedom of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DT,R.QT
 
 @CATEGORY=Statistics
@@ -3577,6 +4585,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DWEIBULL,R.QWEIBULL
 
 @CATEGORY=Statistics
@@ -3588,6 +4597,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{b}: the second scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DBETA,R.PBETA
 
 @CATEGORY=Statistics
@@ -3599,6 +4609,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{psuc}: the probability of success in each trial
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DBINOM,R.PBINOM
 
 @CATEGORY=Statistics
@@ -3610,6 +4621,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DCAUCHY,R.PCAUCHY
 
 @CATEGORY=Statistics
@@ -3620,6 +4632,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{df}: the number of degrees of freedom of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DCHISQ,R.PCHISQ
 
 @CATEGORY=Statistics
@@ -3630,6 +4643,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DEXP,R.PEXP
 
 @CATEGORY=Statistics
@@ -3641,6 +4655,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{n2}: the second number of degrees of freedom of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DF,R.PF
 
 @CATEGORY=Statistics
@@ -3652,6 +4667,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DGAMMA,R.PGAMMA
 
 @CATEGORY=Statistics
@@ -3662,6 +4678,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{psuc}: the probability of success in each trial
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DGEOM,R.PGEOM
 
 @CATEGORY=Statistics
@@ -3674,6 +4691,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{n}: the number of balls drawn
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DHYPER,R.PHYPER
 
 @CATEGORY=Statistics
@@ -3685,6 +4703,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{logsd}: standard deviation of the underlying normal distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DLNORM,R.PLNORM
 
 @CATEGORY=Statistics
@@ -3696,6 +4715,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{psuc}: the probability of success in each trial
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DNBINOM,R.PNBINOM
 
 @CATEGORY=Statistics
@@ -3707,6 +4727,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{sigma}: standard deviation of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DNORM,R.PNORM
 
 @CATEGORY=Statistics
@@ -3717,6 +4738,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{lambda}: the mean of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DPOIS,R.PPOIS
 
 @CATEGORY=Statistics
@@ -3727,6 +4749,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{n}: the number of degrees of freedom of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DT,R.PT
 
 @CATEGORY=Statistics
@@ -3738,6 +4761,7 @@ The successive use of the simulation tool also requires that you give to the too
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
 @{log_p}: if true, log of the probability is used
+
 @SEEALSO=R.DWEIBULL,R.PWEIBULL
 
 @CATEGORY=Statistics
@@ -3758,6 +4782,7 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=Strings and empty cells are simply ignored.
 @{array1}: first component values
 @{array2}: second component values
+
 @SEEALSO=CORREL,COVAR,INTERCEPT,LINEST,LOGEST,PEARSON,SLOPE,STEYX,TREND
 
 @CATEGORY=Statistics
@@ -3766,6 +4791,9 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=Strings and empty cells are simply ignored.
 @{number1}: first value
 @{number2}: second value
+
+ NOTE=This is only meaningful if the underlying distribution really has a third moment.  The skewness of a symmetric (e.g., normal) distribution is zero.
+ NOTE=If less than three numbers are given, this function returns a #DIV/0! error.
 @SEEALSO=AVERAGE,VAR,SKEWP,KURT
 
 @CATEGORY=Statistics
@@ -3774,14 +4802,28 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=Strings and empty cells are simply ignored.
 @{number1}: first value
 @{number2}: second value
+
+ NOTE=If less than two numbers are given, SKEWP returns a #DIV/0! error.
 @SEEALSO=AVERAGE,VARP,SKEW,KURTP
 
 @CATEGORY=Statistics
 @FUNCTION=SLOPE
+ SYNTAX=SLOPE(known_y's,known_x's)
+ DESCRIPTION= 
+ {known_y's}: known y-values
+ {known_x's}: known x-values
+ NOTE=If @{known_x} or @{known_y} contains no data entries or different number of data entries, this function returns a #N/A error.
+ NOTE=If the variance of the @{known_x} is zero, this function returns #DIV/0 error.
 @SEEALSO=STDEV,STDEVPA
 
 @CATEGORY=Statistics
 @FUNCTION=SMALL
+ SYNTAX=SMALL(data,k)
+ DESCRIPTION= 
+ {data}: data set
+ {k}: which value to find
+ NOTE=If data set is empty this function returns a #NUM! error.
+ NOTE=If @{k} <= 0 or @{k} is greater than the number of data items given this function returns a #NUM! error.
 @SEEALSO=PERCENTILE,PERCENTRANK,QUARTILE,LARGE
 
 @CATEGORY=Statistics
@@ -3790,10 +4832,19 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=The data points given in @{array} are assumed to be the result of grouping data into intervals of length @{interval}
 @{array}: data set
 @{interval}: length of each grouping interval, defaults to 1
+
+ NOTE=If @{array} is empty, this function returns a #NUM! error.
+ NOTE=If @{interval} <= 0, this function returns a #NUM! error.SSMEDIAN does not check whether the data points are at least @{interval} apart.
 @SEEALSO=MEDIAN
 
 @CATEGORY=Statistics
 @FUNCTION=STANDARDIZE
+ SYNTAX=STANDARDIZE(x,mean,stddev)
+ DESCRIPTION= 
+ {x}: value
+ {mean}: mean of the original distribution
+ {stddev}: standard deviation of the original distribution
+ NOTE=If @{stddev} is 0 this function returns a #DIV/0! error.
 @SEEALSO=AVERAGE
 
 @CATEGORY=Statistics
@@ -3802,10 +4853,8 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=STDEV is also known as the N-1-standard deviation. Under reasonable conditions, it is the maximum-likelihood estimator for the true population standard deviation.
 @{area1}: first cell area
 @{area2}: second cell area
- SYNTAX=STDEV(area1,area2))
+
 @DESCRIPTION=To obtain the population standard deviation of a whole population use STDEVP.
- {area1}: first cell area
- {area2}: second cell area
 @SEEALSO=AVERAGE,DSTDEV,DSTDEVP,STDEVA,STDEVPA,VAR
 
 @CATEGORY=Statistics
@@ -3814,14 +4863,9 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=STDEVA is also known as the N-1-standard deviation. Under reasonable conditions, it is the maximum-likelihood estimator for the true population standard deviation.
 @{area1}: first cell area
 @{area2}: second cell area
- SYNTAX=STDEVA(area1,area2))
+
 @DESCRIPTION=To obtain the population standard deviation of a whole population use STDEVPA.
- {area1}: first cell area
- {area2}: second cell area
- SYNTAX=STDEVA(area1,area2)))
 @DESCRIPTION=Numbers, text and logical values are included in the calculation too. If the cell contains text or the argument evaluates to FALSE, it is counted as value zero (0). If the argument evaluates to TRUE, it is counted as one (1). Note that empty cells are not counted.
- {area1}: first cell area
- {area2}: second cell area
 @SEEALSO=STDEV,STDEVPA
 
 @CATEGORY=Statistics
@@ -3830,6 +4874,7 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=This is also known as the N-standard deviation
 @{area1}: first cell area
 @{area2}: second cell area
+
 @SEEALSO=STDEV,STDEVA,STDEVPA
 
 @CATEGORY=Statistics
@@ -3838,14 +4883,17 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=This is also known as the N-standard deviation
 @{area1}: first cell area
 @{area2}: second cell area
- SYNTAX=STDEVPA(area1,area2))
+
 @DESCRIPTION=Numbers, text and logical values are included in the calculation too. If the cell contains text or the argument evaluates to FALSE, it is counted as value zero (0). If the argument evaluates to TRUE, it is counted as one (1). Note that empty cells are not counted.
- {area1}: first cell area
- {area2}: second cell area
 @SEEALSO=STDEVA,STDEVP
 
 @CATEGORY=Statistics
 @FUNCTION=STEYX
+ SYNTAX=STEYX(known_y's,known_x's)
+ DESCRIPTION= 
+ {known_y's}: known y-values
+ {known_x's}: known x-values
+ NOTE=If @{known_y}'s and @{known_x}'s are empty or have a different number of arguments then this function returns a #N/A error.
 @SEEALSO=PEARSON,RSQ,SLOPE
 
 @CATEGORY=Statistics
@@ -3859,11 +4907,11 @@ The successive use of the simulation tool also requires that you give to the too
 @{x}: 
 @{dof}: number of degrees of freedom
 @{tails}: 1 or 2. If this is 2, @{x} is replaced by the absolute value and the returned value is multiplied by 2
- SYNTAX=TDIST(x,dof,tails))
+
+ NOTE=If @{dof} < 1 this function returns a #NUM! error.
+ NOTE=If @{tails} is neither 1 or 2 this function returns a #NUM! error.
+ NOTE=The parameterization of this function is different from what is used for, e.g., NORMSDIST.  This is a common source of mistakes, but necessary for compatibility.
 @DESCRIPTION=This function is Excel compatible for non-negative @{x}.
- {x}: 
- {dof}: number of degrees of freedom
- {tails}: 1 or 2. If this is 2, @{x} is replaced by the absolute value and the returned value is multiplied by 2
 @SEEALSO=TINV,TTEST
 
 @CATEGORY=Statistics
@@ -3872,10 +4920,20 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=The survival function is 1 minus the cumulative distribution function.
 @{p}: probability
 @{dof}: number of degrees of freedom
+
+ NOTE=If @{p} < 0 or @{p} > 1 or @{dof} < 1 this function returns a #NUM! error.
+ NOTE=The parameterization of this function is different from what is used for, e.g., NORMSINV.  This is a common source of mistakes, but necessary for compatibility.
 @SEEALSO=TDIST,TTEST
 
 @CATEGORY=Statistics
 @FUNCTION=TREND
+ SYNTAX=TREND(known_y's,known_x's,new_x's,const)
+ DESCRIPTION= 
+ {known_y's}: known y-values
+ {known_x's}: known x-values; if @{known_x}'s is omitted, an array {1, 2, 3, ...} is used.
+ {new_x's}:  x-values for which you want to estimate the y-values; defaults to @{known_x}'s
+ {const}: if this is false the line will be forced to go through the origin; defaults to TRUE
+ NOTE=If @{known_y's} and @{known_x's} have unequal number of data points, this function returns a #NUM! error.
 @SEEALSO=LINEST
 
 @CATEGORY=Statistics
@@ -3884,10 +4942,21 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=If @{fraction}=0.2 and the data set contains 40 numbers, 8 numbers are trimmed from the data set (40 x 0.2): the 4 largest and the 4 smallest. To avoid a bias, the number of points to be excluded is always rounded down to the nearest even number.
 @{ref}: list of numbers whose mean you want to calculate
 @{fraction}: fraction of the data set excluded from the mean
+
 @SEEALSO=AVERAGE,GEOMEAN,HARMEAN,MEDIAN,MODE
 
 @CATEGORY=Statistics
 @FUNCTION=TTEST
+ SYNTAX=TTEST(array1,array2,tails,type)
+ DESCRIPTION= 
+ {array1}: sample from the first population
+ {array2}: sample from the second population
+ {tails}: number of tails to consider
+ {type}: Type of test to perform. 1 indicates a test for paired variables, 2 a test of unpaired variables with equal variances, and 3 a test of unpaired variables with unequal variances
+ NOTE=If the data sets contain a different number of data points and the test is paired (@{type} one), TTEST returns the #N/A error.
+ NOTE=@{tails} and @{type} are truncated to integers.
+ NOTE=If @{tails} is not one or two, this function returns a #NUM! error.
+ NOTE=If @{type} is any other than one, two, or three, this function returns a #NUM! error.
 @SEEALSO=FDIST,FINV
 
 @CATEGORY=Statistics
@@ -3896,6 +4965,7 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=VAR is also known as the N-1-variance. Under reasonable conditions, it is the maximum-likelihood estimator for the true variance.
 @{area1}: first cell area
 @{area2}: second cell area
+
 @SEEALSO=VARP,STDEV
 
 @CATEGORY=Statistics
@@ -3904,14 +4974,9 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=VARA is also known as the N-1-variance. Under reasonable conditions, it is the maximum-likelihood estimator for the true variance
 @{area1}: first cell area
 @{area2}: second cell area
- SYNTAX=VARA(area1,area2))
+
 @DESCRIPTION=To get the true variance of a complete population use VARPA.
- {area1}: first cell area
- {area2}: second cell area
- SYNTAX=VARA(area1,area2)))
 @DESCRIPTION=Numbers, text and logical values are included in the calculation too. If the cell contains text or the argument evaluates to FALSE, it is counted as value zero (0). If the argument evaluates to TRUE, it is counted as one (1). Note that empty cells are not counted.
- {area1}: first cell area
- {area2}: second cell area
 @SEEALSO=VAR,VARPA
 
 @CATEGORY=Statistics
@@ -3920,6 +4985,7 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=VARP is also known as the N-variance.
 @{area1}: first cell area
 @{area2}: second cell area
+
 @SEEALSO=AVERAGE,DVAR,DVARP,STDEV,VAR
 
 @CATEGORY=Statistics
@@ -3928,10 +4994,8 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=VARPA is also known as the N-variance.
 @{area1}: first cell area
 @{area2}: second cell area
- SYNTAX=VARPA(area1,area2))
+
 @DESCRIPTION=Numbers, text and logical values are included in the calculation too. If the cell contains text or the argument evaluates to FALSE, it is counted as value zero (0). If the argument evaluates to TRUE, it is counted as one (1). Note that empty cells are not counted.
- {area1}: first cell area
- {area2}: second cell area
 @SEEALSO=VARA,VARP
 
 @CATEGORY=Statistics
@@ -3942,10 +5006,19 @@ The successive use of the simulation tool also requires that you give to the too
 @{alpha}: scale parameter
 @{beta}: scale parameter
 @{cumulative}: whether to evaluate the density function or the cumulative distribution function
+
+ NOTE=If @{x} < 0 this function returns a #NUM! error.
+ NOTE=If @{alpha} <= 0 or @{beta} <= 0 this function returns a #NUM! error.
 @SEEALSO=POISSON
 
 @CATEGORY=Statistics
 @FUNCTION=ZTEST
+ SYNTAX=ZTEST(ref,x,stddev)
+ DESCRIPTION= 
+ {ref}: data set
+ {x}: mean as given in the null hypothesis
+ {stddev}: population stadard deviation, defaults to the sample standard deviation
+ NOTE=If @{ref} contains less than two data items ZTEST returns #DIV/0! error.
 @SEEALSO=CONFIDENCE,NORMDIST,NORMINV,NORMSDIST,NORMSINV,STANDARDIZE
 
 @CATEGORY=String
@@ -3953,9 +5026,9 @@ The successive use of the simulation tool also requires that you give to the too
 @SYNTAX=ASC(text)
 @DESCRIPTION=ASC converts full-width katakana and ASCII characters to half-width equivalent characters, copying all others. 
 @{text}: string
- SYNTAX=ASC(text))
+
 @DESCRIPTION=The distinction between half-width and full-width characters is described in http://www.unicode.org/reports/tr11/.
- {text}: string
+ NOTE=While in obsolete encodings ASC used to translate between 2-byte and 1-byte characters, this is not the case in UTF-8.
 @SEEALSO=JIS
 
 @CATEGORY=String
@@ -3963,37 +5036,33 @@ The successive use of the simulation tool also requires that you give to the too
 @SYNTAX=CHAR(x)
 @DESCRIPTION=CHAR(@{x}) returns the CP1252 (Windows-1252) character with code @{x}.
 @{x}: code point
- SYNTAX=CHAR(x))
+
 @DESCRIPTION= {x} must be in the range 1 to 255.
- {x}: code point
- SYNTAX=CHAR(x)))
 @DESCRIPTION=CP1252 (Windows-1252) is also known as the "ANSI code page", but it is not an ANSI standard.
- {x}: code point
- SYNTAX=CHAR(x))))
 @DESCRIPTION=CP1252 (Windows-1252) is based on an early draft of ISO-8859-1, and contains all of its printable characters (but partially at different positions.)
- {x}: code point
- SYNTAX=CHAR(x)))))
+ NOTE=In CP1252 (Windows-1252), 129, 141, 143, 144, and 157 do not have matching characters.
+ NOTE=For @{x} from 1 to 255 except 129, 141, 143, 144, and 157 we have CODE(CHAR(@{x}))= {x} 
 @DESCRIPTION=This function is Excel compatible.
- {x}: code point
 @SEEALSO=CODE
 
 @CATEGORY=String
 @FUNCTION=CLEAN
+ SYNTAX=CLEAN(text)
+ DESCRIPTION=CLEAN removes non-printable characters from its argument leaving only regular characters and white-space.
+ {text}: string
+
 
 @CATEGORY=String
 @FUNCTION=CODE
 @SYNTAX=CODE(c)
 @DESCRIPTION= {c} must be a valid CP1252 (Windows-1252) character.
 @{c}: character
- SYNTAX=CODE(c))
+
 @DESCRIPTION=CP1252 (Windows-1252) is also known as the "ANSI code page", but it is not an ANSI standard.
- {c}: character
- SYNTAX=CODE(c)))
 @DESCRIPTION=CP1252 (Windows-1252) is based on an early draft of ISO-8859-1, and contains all of its printable characters (but partially at different positions.)
- {c}: character
- SYNTAX=CODE(c))))
+ NOTE=In CP1252 (Windows-1252), 129, 141, 143, 144, and 157 do not have matching characters.
+ NOTE=For @{x} from 1 to 255 except 129, 141, 143, 144, and 157 we have CODE(CHAR(@{x}))= {x} 
 @DESCRIPTION=This function is Excel compatible.
- {c}: character
 @SEEALSO=CHAR
 
 @CATEGORY=String
@@ -4010,10 +5079,22 @@ The successive use of the simulation tool also requires that you give to the too
 
 @CATEGORY=String
 @FUNCTION=FIND
+ SYNTAX=FIND(string1,string2,start)
+ DESCRIPTION= 
+ {string1}: search string
+ {string2}: search field
+ {start}: starting position, defaults to 1
+ NOTE=This search is case-sensitive.
 @SEEALSO=EXACT,LEN,MID,SEARCH
 
 @CATEGORY=String
 @FUNCTION=FINDB
+ SYNTAX=FINDB(string1,string2,start)
+ DESCRIPTION= 
+ {string1}: search string
+ {string2}: search field
+ {start}: starting byte position, defaults to 1
+ NOTE=This search is case-sensitive.
 @SEEALSO=FIND,LEFTB,RIGHTB,LENB,LEFT,MID,RIGHT,LEN
 
 @CATEGORY=String
@@ -4025,17 +5106,28 @@ The successive use of the simulation tool also requires that you give to the too
 @SYNTAX=JIS(text)
 @DESCRIPTION=JIS converts half-width katakana and ASCII characters to full-width equivalent characters, copying all others. 
 @{text}: original text
- SYNTAX=JIS(text))
+
 @DESCRIPTION=The distinction between half-width and full-width characters is described in http://www.unicode.org/reports/tr11/.
- {text}: original text
+ NOTE=While in obsolete encodings JIS used to translate between 1-byte and 2-byte characters, this is not the case in UTF-8.
 @SEEALSO=ASC
 
 @CATEGORY=String
 @FUNCTION=LEFT
+ SYNTAX=LEFT(s,num_chars)
+ DESCRIPTION= 
+ {s}: the string
+ {num_chars}: the number of characters to return (defaults to 1)
+ NOTE=If the string @{s} is in a right-to-left script, the returned first characters are from the right of the string.
 @SEEALSO=MID,RIGHT,LEN,MIDB,RIGHTB,LENB
 
 @CATEGORY=String
 @FUNCTION=LEFTB
+ SYNTAX=LEFTB(s,num_bytes)
+ DESCRIPTION= 
+ {s}: the string
+ {num_bytes}: the maximum number of bytes to return (defaults to 1)
+ NOTE=The semantics of this function is subject to change as various applications implement it.
+ NOTE=If the string is in a right-to-left script, the returned first characters are from the right of the string.
 @SEEALSO=MIDB,RIGHTB,LENB,LEFT,MID,RIGHT,LEN
 
 @CATEGORY=String
@@ -4056,6 +5148,12 @@ The successive use of the simulation tool also requires that you give to the too
 
 @CATEGORY=String
 @FUNCTION=MIDB
+ SYNTAX=MIDB(s,start_pos,num_bytes)
+ DESCRIPTION= 
+ {s}: the string
+ {start_pos}: the number of the byte with which to start (defaults to 1)
+ {num_bytes}: the maximum number of bytes to return (defaults to 1)
+ NOTE=The semantics of this function is subject to change as various applications implement it.
 @SEEALSO=LEFTB,RIGHTB,LENB,LEFT,MID,RIGHT,LEN
 
 @CATEGORY=String
@@ -4074,6 +5172,8 @@ The successive use of the simulation tool also requires that you give to the too
 @{start}: starting byte position
 @{num}: number of bytes to be replaced
 @{new}: replacement string
+
+ NOTE=The semantics of this function is subject to change as various applications implement it.
 @SEEALSO=MID,SEARCH,SUBSTITUTE,TRIM
 
 @CATEGORY=String
@@ -4082,10 +5182,21 @@ The successive use of the simulation tool also requires that you give to the too
 
 @CATEGORY=String
 @FUNCTION=RIGHT
+ SYNTAX=RIGHT(s,num_chars)
+ DESCRIPTION= 
+ {s}: the string
+ {num_chars}: the number of characters to return (defaults to 1)
+ NOTE=If the string @{s} is in a right-to-left script, the returned last characters are from the left of the string.
 @SEEALSO=LEFT,MID,LEN,LEFTB,MIDB,RIGHTB,LENB
 
 @CATEGORY=String
 @FUNCTION=RIGHTB
+ SYNTAX=RIGHTB(s,num_bytes)
+ DESCRIPTION= 
+ {s}: the string
+ {num_bytes}: the maximum number of bytes to return (defaults to 1)
+ NOTE=The semantics of this function is subject to change as various applications implement it.
+ NOTE=If the string @{s} is in a right-to-left script, the returned last characters are from the left of the string.
 @SEEALSO=LEFTB,MIDB,LENB,LEFT,MID,RIGHT,LEN
 
 @CATEGORY=String
@@ -4095,6 +5206,10 @@ The successive use of the simulation tool also requires that you give to the too
 @{search}: search string
 @{text}: search field
 @{start}: starting position, defaults to 1
+
+ NOTE=This search is not case sensitive.
+ NOTE=If @{search} is not found, SEARCH returns #VALUE!
+ NOTE=If @{start} is less than one or it is greater than the length of @{text}, SEARCH returns #VALUE!
 @SEEALSO=FIND,SEARCHB
 
 @CATEGORY=String
@@ -4104,6 +5219,11 @@ The successive use of the simulation tool also requires that you give to the too
 @{search}: search string
 @{text}: search field
 @{start}: starting byte position, defaults to 1
+
+ NOTE=This search is not case sensitive.
+ NOTE=If @{search} is not found, SEARCH returns #VALUE!
+ NOTE=If @{start} is less than one or it is greater than the byte length of @{text}, SEARCH returns #VALUE!
+ NOTE=The semantics of this function is subject to change as various applications implement it.
 @SEEALSO=FINDB,SEARCH
 
 @CATEGORY=String
@@ -4144,10 +5264,9 @@ The successive use of the simulation tool also requires that you give to the too
 @DESCRIPTION=This array function returns the Fourier or inverse Fourier transform of the given data sequence.
 @{Sequence}:  the data sequence to be transformed
 @{Inverse}: if false, the inverse Fourier transform is calculated. Defaults to false
- SYNTAX=FOURIER(Sequence,Inverse))
+
 @DESCRIPTION=The output consists always of one column of complex numbers.
- {Sequence}:  the data sequence to be transformed
- {Inverse}: if false, the inverse Fourier transform is calculated. Defaults to false
+ NOTE=If @{Sequence} is neither an n by 1 nor 1 by n array, this function returns #NUM!
 
 @CATEGORY=Time Series Analysis
 @FUNCTION=Interpolation
@@ -4157,13 +5276,8 @@ The successive use of the simulation tool also requires that you give to the too
 @{ordinates}: The ordinates of the data to interpolate.
 @{targets}: The abscissas of the interpolated data.
 @{interpolation}: The method of interpolation to be used, defaults to no interpolation
- SYNTAX=Interpolation(abscissas,ordinates,targets,interpolation))
+
 @DESCRIPTION=The output consists always of one column of numbers.
- {abscissas}: The abscissas of the data to interpolate.
- {ordinates}: The ordinates of the data to interpolate.
- {targets}: The abscissas of the interpolated data.
- {interpolation}: The method of interpolation to be used, defaults to no interpolation
- SYNTAX=Interpolation(abscissas,ordinates,targets,interpolation)))
 @DESCRIPTION=Possible interpolation methods are:
 0: linear;
 1: linear with averaging;
@@ -4171,10 +5285,8 @@ The successive use of the simulation tool also requires that you give to the too
 3: staircase with averaging;
 4: natural cubic spline;
 5: natural cubic spline with averaging.
- {abscissas}: The abscissas of the data to interpolate.
- {ordinates}: The ordinates of the data to interpolate.
- {targets}: The abscissas of the interpolated data.
- {interpolation}: The method of interpolation to be used, defaults to no interpolation
+ NOTE=Strings and empty cells in @{abscissas} and @{ordinates} are ignored.
+ NOTE=If several target data are provided they must be in the same column in consecutive cells.
 @SEEALSO=PERIODOGRAM
 
 @CATEGORY=Time Series Analysis
@@ -4186,14 +5298,8 @@ The successive use of the simulation tool also requires that you give to the too
 @{abscissas}: The abscissas of the data to interpolate, defaults to regularly spaced abscissa.
 @{interpolation}: The method of interpolation to be used, defaults to no interpolation
 @{number}:  Number of interpolated data points to be used.
- SYNTAX=PERIODOGRAM(ordinates,filter,abscissas,interpolation,number))
+
 @DESCRIPTION=The output consists always of one column of numbers.
- {ordinates}: The ordinates of the data to interpolate.
- {filter}: Window function to  be used, defaults to no window function.
- {abscissas}: The abscissas of the data to interpolate, defaults to regularly spaced abscissa.
- {interpolation}: The method of interpolation to be used, defaults to no interpolation
- {number}:  Number of interpolated data points to be used.
- SYNTAX=PERIODOGRAM(ordinates,filter,abscissas,interpolation,number)))
 @DESCRIPTION=Possible interpolation methods are:
 0: linear;
 1: linear with averaging;
@@ -4201,21 +5307,12 @@ The successive use of the simulation tool also requires that you give to the too
 3: staircase with averaging;
 4: natural cubic spline;
 5: natural cubic spline with averaging.
- {ordinates}: The ordinates of the data to interpolate.
- {filter}: Window function to  be used, defaults to no window function.
- {abscissas}: The abscissas of the data to interpolate, defaults to regularly spaced abscissa.
- {interpolation}: The method of interpolation to be used, defaults to no interpolation
- {number}:  Number of interpolated data points to be used.
- SYNTAX=PERIODOGRAM(ordinates,filter,abscissas,interpolation,number))))
 @DESCRIPTION=Possible window functions are:
 0: no filter (rectangular window)
 1: Bartlett (triangular window)
 2: Hahn (cosine window)
 3: Welch (parabolic window)
- {ordinates}: The ordinates of the data to interpolate.
- {filter}: Window function to  be used, defaults to no window function.
- {abscissas}: The abscissas of the data to interpolate, defaults to regularly spaced abscissa.
- {interpolation}: The method of interpolation to be used, defaults to no interpolation
- {number}:  Number of interpolated data points to be used.
+ NOTE=Strings and empty cells in @{abscissas} and @{ordinates} are ignored.
+ NOTE=If several target data are provided they must be in the same column in consecutive cells.
 @SEEALSO=INTERPOLATION
 
diff --git a/doc/C/functions.xml b/doc/C/functions.xml
index 8509759..c1a7755 100644
--- a/doc/C/functions.xml
+++ b/doc/C/functions.xml
@@ -59,6 +59,10 @@
         <para><parameter>n</parameter>: integer</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>n</parameter> is negative, <function>BITLSHIFT</function> shifts the bits to the right by ABS(<parameter>n</parameter>) positions.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-BITRSHIFT"><function>BITRSHIFT</function></link>.
       </para>
@@ -114,6 +118,10 @@
         <para><parameter>n</parameter>: integer</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>n</parameter> is negative, <function>BITRSHIFT</function> shifts the bits to the left by ABS(<parameter>n</parameter>) positions.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-BITLSHIFT"><function>BITLSHIFT</function></link>.
       </para>
@@ -162,6 +170,20 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>COMPLEX</function>(<parameter>x</parameter>,<parameter>y</parameter>,<parameter>i</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: real part</para>
+        <para><parameter>y</parameter>: imaginary part</para>
+        <para><parameter>i</parameter>: the suffix for the complex number, either "i" or "j"; defaults to "i".</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>i</parameter> is neither "i" nor "j", <function>COMPLEX</function> returns #VALUE!</para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-IMABS">
       <refmeta>
@@ -175,6 +197,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMABS</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMAGINARY"><function>IMAGINARY</function></link>,
@@ -194,6 +228,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMAGINARY</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMREAL"><function>IMREAL</function></link>.
@@ -221,6 +267,10 @@
         <para><parameter>z</parameter>: a complex number</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMARCSIN"><function>IMARCSIN</function></link>,
         <link linkend="gnumeric-IMARCTAN"><function>IMARCTAN</function></link>.
@@ -248,6 +298,10 @@
         <para><parameter>z</parameter>: a complex number</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMARCSINH"><function>IMARCSINH</function></link>,
         <link linkend="gnumeric-IMARCTANH"><function>IMARCTANH</function></link>.
@@ -266,6 +320,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMARCCOT</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMARCSEC"><function>IMARCSEC</function></link>,
@@ -285,6 +351,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMARCCOTH</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMARCSECH"><function>IMARCSECH</function></link>,
@@ -304,6 +382,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMARCCSC</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMARCSEC"><function>IMARCSEC</function></link>,
@@ -323,6 +413,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMARCCSCH</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMARCSECH"><function>IMARCSECH</function></link>,
@@ -342,6 +444,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMARCSEC</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMARCCSC"><function>IMARCCSC</function></link>,
@@ -361,6 +475,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMARCSECH</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMARCCSCH"><function>IMARCCSCH</function></link>,
@@ -389,6 +515,10 @@
         <para><parameter>z</parameter>: a complex number</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMARCCOS"><function>IMARCCOS</function></link>,
         <link linkend="gnumeric-IMARCTAN"><function>IMARCTAN</function></link>.
@@ -416,6 +546,10 @@
         <para><parameter>z</parameter>: a complex number</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMARCCOSH"><function>IMARCCOSH</function></link>,
         <link linkend="gnumeric-IMARCTANH"><function>IMARCTANH</function></link>.
@@ -443,6 +577,10 @@
         <para><parameter>z</parameter>: a complex number</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMARCSIN"><function>IMARCSIN</function></link>,
         <link linkend="gnumeric-IMARCCOS"><function>IMARCCOS</function></link>.
@@ -470,6 +608,10 @@
         <para><parameter>z</parameter>: a complex number</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMARCSINH"><function>IMARCSINH</function></link>,
         <link linkend="gnumeric-IMARCCOSH"><function>IMARCCOSH</function></link>.
@@ -496,6 +638,10 @@
         <para>The argument theta of a complex number is its angle in radians from the real axis.</para>
         <para><parameter>z</parameter>: a complex number</para>
       </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-IMCONJUGATE">
       <refmeta>
@@ -509,6 +655,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMCONJUGATE</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMAGINARY"><function>IMAGINARY</function></link>,
@@ -528,6 +686,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMCOS</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMSIN"><function>IMSIN</function></link>,
@@ -547,6 +717,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMCOSH</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMSINH"><function>IMSINH</function></link>,
@@ -575,6 +757,10 @@
         <para><parameter>z</parameter>: a complex number</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMSEC"><function>IMSEC</function></link>,
         <link linkend="gnumeric-IMCSC"><function>IMCSC</function></link>.
@@ -593,6 +779,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMCOTH</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMSECH"><function>IMSECH</function></link>,
@@ -621,6 +819,10 @@
         <para><parameter>z</parameter>: a complex number</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMSEC"><function>IMSEC</function></link>,
         <link linkend="gnumeric-IMCOT"><function>IMCOT</function></link>.
@@ -639,6 +841,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMCSCH</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMSECH"><function>IMSECH</function></link>,
@@ -658,6 +872,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMDIV</function>(<parameter>z1</parameter>,<parameter>z2</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z1</parameter>: a complex number</para>
+        <para><parameter>z2</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z1</parameter> or <parameter>z2</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMPRODUCT"><function>IMPRODUCT</function></link>.
@@ -676,6 +903,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMEXP</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMLN"><function>IMLN</function></link>.
@@ -694,6 +933,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMINV</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-IMLN">
       <refmeta>
@@ -717,6 +968,10 @@
         <para><parameter>z</parameter>: a complex number</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMEXP"><function>IMEXP</function></link>,
         <link linkend="gnumeric-IMLOG2"><function>IMLOG2</function></link>,
@@ -736,6 +991,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMLOG10</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMLN"><function>IMLN</function></link>,
@@ -755,6 +1022,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMLOG2</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMLN"><function>IMLN</function></link>,
@@ -774,6 +1053,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMNEG</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-IMPOWER">
       <refmeta>
@@ -787,6 +1078,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMPOWER</function>(<parameter>z1</parameter>,<parameter>z2</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z1</parameter>: a complex number</para>
+        <para><parameter>z2</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z1</parameter> or <parameter>z2</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMSQRT"><function>IMSQRT</function></link>.
@@ -805,6 +1109,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMPRODUCT</function>(<parameter>z1</parameter>,<parameter>z2</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z1</parameter>: a complex number</para>
+        <para><parameter>z2</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If any of <parameter>z1</parameter>, <parameter>z2</parameter>,... is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMDIV"><function>IMDIV</function></link>.
@@ -823,6 +1140,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMREAL</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMAGINARY"><function>IMAGINARY</function></link>.
@@ -850,6 +1179,10 @@
         <para><parameter>z</parameter>: a complex number</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMCSC"><function>IMCSC</function></link>,
         <link linkend="gnumeric-IMCOT"><function>IMCOT</function></link>.
@@ -868,6 +1201,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMSECH</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMCSCH"><function>IMCSCH</function></link>,
@@ -887,6 +1232,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMSIN</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMCOS"><function>IMCOS</function></link>,
@@ -906,6 +1263,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMSINH</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMCOSH"><function>IMCOSH</function></link>,
@@ -925,6 +1294,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMSQRT</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMPOWER"><function>IMPOWER</function></link>.
@@ -943,6 +1324,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMSUB</function>(<parameter>z1</parameter>,<parameter>z2</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z1</parameter>: a complex number</para>
+        <para><parameter>z2</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z1</parameter> or <parameter>z2</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMSUM"><function>IMSUM</function></link>.
@@ -961,6 +1355,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMSUM</function>(<parameter>z1</parameter>,<parameter>z2</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z1</parameter>: a complex number</para>
+        <para><parameter>z2</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If any of <parameter>z1</parameter>, <parameter>z2</parameter>,... is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMSUB"><function>IMSUB</function></link>.
@@ -979,6 +1386,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMTAN</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMSIN"><function>IMSIN</function></link>,
@@ -998,6 +1417,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>IMTANH</function>(<parameter>z</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>z</parameter>: a complex number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>z</parameter> is not a valid complex number, #VALUE! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IMSINH"><function>IMSINH</function></link>,
@@ -1030,25 +1461,13 @@
         <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
         <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DAVERAGE</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>field</parameter> is a string or integer specifying whichfield is to be used. If <parameter>field</parameter> is an integer nthen the nth column will be used. If <parameter>field</parameter> is a string, then the column with the matching label will be used.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DAVERAGE</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>criteria</parameter> is a range containing conditions. The first row of a <parameter>criteria</parameter> should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as "&gt;3" or "&lt;9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of <parameter>criteria</parameter>.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -1078,25 +1497,13 @@
         <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
         <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DCOUNT</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>field</parameter> is a string or integer specifying whichfield is to be used. If <parameter>field</parameter> is an integer nthen the nth column will be used. If <parameter>field</parameter> is a string, then the column with the matching label will be used.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DCOUNT</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>criteria</parameter> is a range containing conditions. The first row of a <parameter>criteria</parameter> should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as "&gt;3" or "&lt;9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of <parameter>criteria</parameter>.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -1127,25 +1534,13 @@
         <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
         <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DCOUNTA</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>field</parameter> is a string or integer specifying whichfield is to be used. If <parameter>field</parameter> is an integer nthen the nth column will be used. If <parameter>field</parameter> is a string, then the column with the matching label will be used.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DCOUNTA</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>criteria</parameter> is a range containing conditions. The first row of a <parameter>criteria</parameter> should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as "&gt;3" or "&lt;9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of <parameter>criteria</parameter>.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -1175,25 +1570,21 @@
         <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
         <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DGET</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>field</parameter> is a string or integer specifying whichfield is to be used. If <parameter>field</parameter> is an integer nthen the nth column will be used. If <parameter>field</parameter> is a string, then the column with the matching label will be used.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DGET</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>criteria</parameter> is a range containing conditions. The first row of a <parameter>criteria</parameter> should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as "&gt;3" or "&lt;9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of <parameter>criteria</parameter>.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If none of the records match the conditions, <function>DGET</function> returns #VALUE!</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If more than one record match the conditions, <function>DGET</function> returns #NUM!</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -1223,25 +1614,13 @@
         <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
         <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DMAX</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>field</parameter> is a string or integer specifying whichfield is to be used. If <parameter>field</parameter> is an integer nthen the nth column will be used. If <parameter>field</parameter> is a string, then the column with the matching label will be used.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DMAX</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>criteria</parameter> is a range containing conditions. The first row of a <parameter>criteria</parameter> should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as "&gt;3" or "&lt;9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of <parameter>criteria</parameter>.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -1271,25 +1650,13 @@
         <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
         <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DMIN</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>field</parameter> is a string or integer specifying whichfield is to be used. If <parameter>field</parameter> is an integer nthen the nth column will be used. If <parameter>field</parameter> is a string, then the column with the matching label will be used.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DMIN</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>criteria</parameter> is a range containing conditions. The first row of a <parameter>criteria</parameter> should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as "&gt;3" or "&lt;9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of <parameter>criteria</parameter>.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -1319,25 +1686,13 @@
         <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
         <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DPRODUCT</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>field</parameter> is a string or integer specifying whichfield is to be used. If <parameter>field</parameter> is an integer nthen the nth column will be used. If <parameter>field</parameter> is a string, then the column with the matching label will be used.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DPRODUCT</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>criteria</parameter> is a range containing conditions. The first row of a <parameter>criteria</parameter> should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as "&gt;3" or "&lt;9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of <parameter>criteria</parameter>.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -1367,25 +1722,13 @@
         <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
         <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DSTDEV</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>field</parameter> is a string or integer specifying whichfield is to be used. If <parameter>field</parameter> is an integer nthen the nth column will be used. If <parameter>field</parameter> is a string, then the column with the matching label will be used.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DSTDEV</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>criteria</parameter> is a range containing conditions. The first row of a <parameter>criteria</parameter> should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as "&gt;3" or "&lt;9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of <parameter>criteria</parameter>.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -1415,25 +1758,13 @@
         <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
         <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DSTDEVP</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>field</parameter> is a string or integer specifying whichfield is to be used. If <parameter>field</parameter> is an integer nthen the nth column will be used. If <parameter>field</parameter> is a string, then the column with the matching label will be used.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DSTDEVP</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>criteria</parameter> is a range containing conditions. The first row of a <parameter>criteria</parameter> should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as "&gt;3" or "&lt;9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of <parameter>criteria</parameter>.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -1463,25 +1794,13 @@
         <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
         <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DSUM</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>field</parameter> is a string or integer specifying whichfield is to be used. If <parameter>field</parameter> is an integer nthen the nth column will be used. If <parameter>field</parameter> is a string, then the column with the matching label will be used.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DSUM</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>criteria</parameter> is a range containing conditions. The first row of a <parameter>criteria</parameter> should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as "&gt;3" or "&lt;9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of <parameter>criteria</parameter>.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -1511,25 +1830,13 @@
         <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
         <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DVAR</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>field</parameter> is a string or integer specifying whichfield is to be used. If <parameter>field</parameter> is an integer nthen the nth column will be used. If <parameter>field</parameter> is a string, then the column with the matching label will be used.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DVAR</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>criteria</parameter> is a range containing conditions. The first row of a <parameter>criteria</parameter> should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as "&gt;3" or "&lt;9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of <parameter>criteria</parameter>.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -1559,25 +1866,13 @@
         <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
         <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DVARP</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>field</parameter> is a string or integer specifying whichfield is to be used. If <parameter>field</parameter> is an integer nthen the nth column will be used. If <parameter>field</parameter> is a string, then the column with the matching label will be used.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>DVARP</function>(<parameter>database</parameter>,<parameter>field</parameter>,<parameter>criteria</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>criteria</parameter> is a range containing conditions. The first row of a <parameter>criteria</parameter> should contain labels. Each label specifies to which field the conditions given in that column apply. Each cell below the label specifies a condition such as "&gt;3" or "&lt;9". An equality condition can be given by simply specifying a value, e. g. "3" or "Jody". For a record to be considered it must satisfy all conditions in at least one of the rows of <parameter>criteria</parameter>.</para>
-        <para><parameter>database</parameter>: a range in which rows of related information are records and columns of data are fields</para>
-        <para><parameter>field</parameter>: a string or integer specifying which field is to be used</para>
-        <para><parameter>criteria</parameter>: a range containing conditions</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -1597,6 +1892,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>GETPIVOTDATA</function>(<parameter>pivot_table</parameter>,<parameter>field_name</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>pivot_table</parameter>: cell range containing the pivot table</para>
+        <para><parameter>field_name</parameter>: name of the field for which the summary data is requested</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If the summary data is unavailable, <function>GETPIVOTDATA</function> returns #REF!</para>
+      </refsect1>
     </refentry>
   </sect1>
   <sect1 id="CATEGORY_DateTime">
@@ -1624,6 +1932,14 @@
         <para><parameter>day</parameter>: day of month</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>month</parameter> or <parameter>day</parameter> is less than 1 or too big, then the year and/or month will be adjusted.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>For spreadsheets created with the Mac version of Excel, serial 1 is 1-Jan-1904.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-TODAY"><function>TODAY</function></link>,
         <link linkend="gnumeric-YEAR"><function>YEAR</function></link>,
@@ -1682,6 +1998,18 @@
         <para><parameter>interval</parameter>: counting unit</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>interval</parameter> is "y", "m", or "d" then the distance is measured in complete years, months, or days respectively.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>interval</parameter> is "ym" or "yd" then the distance is measured in complete months or days, respectively, but excluding any difference in years.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>interval</parameter> is "md" then the distance is measured in complete days but excluding any difference in months.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-DAYS360"><function>DAYS360</function></link>.
       </para>
@@ -1765,6 +2093,18 @@
         <para><parameter>method</parameter>: counting method</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>method</parameter> is 0, the default, the MS Excel (tm) US method will be used. This is a somewhat complicated industry standard method where the last day of February is considered to be the 30th day of the month, but only for <parameter>start_date</parameter>.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>method</parameter> is 1, the European method will be used.  In this case, if the day of the month is 31 it will be considered as 30</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>method</parameter> is 2, a saner version of the US method is used in which both dates get the same February treatment.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-DATEDIF"><function>DATEDIF</function></link>.
       </para>
@@ -1873,6 +2213,10 @@
         <para><parameter>date</parameter>: date serial value</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>January 1 of a year is sometimes in week 52 or 53 of the previous year.  Similarly, December 31 is sometimes in week 1 of the following year.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-ISOYEAR"><function>ISOYEAR</function></link>,
         <link linkend="gnumeric-WEEKNUM"><function>WEEKNUM</function></link>.
@@ -1900,6 +2244,10 @@
         <para><parameter>date</parameter>: date serial value</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>January 1 of a year is sometimes in week 52 or 53 of the previous year.  Similarly, December 31 is sometimes in week 1 of the following year.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-ISOWEEKNUM"><function>ISOWEEKNUM</function></link>,
         <link linkend="gnumeric-YEAR"><function>YEAR</function></link>.
@@ -2174,6 +2522,18 @@
         <para><parameter>method</parameter>: numbering system</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>method</parameter> is 1, then Sunday is 1, Monday is 2, etc.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>method</parameter> is 2, then Monday is 1, Sunday is 2, etc.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>method</parameter> is 3, then Monday is 0, Sunday is 1, etc.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-DATE"><function>DATE</function></link>,
         <link linkend="gnumeric-ISOWEEKNUM"><function>ISOWEEKNUM</function></link>.
@@ -2202,6 +2562,18 @@
         <para><parameter>method</parameter>: numbering system</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>method</parameter> is 1, then weeks start on Sundays and days before first Sunday are in week 0.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>method</parameter> is 2, then weeks start on Mondays and days before first Monday are in week 0.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>method</parameter> is 150, then the ISO 8601 numbering is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-ISOWEEKNUM"><function>ISOWEEKNUM</function></link>.
       </para>
@@ -2230,6 +2602,10 @@
         <para><parameter>holidays</parameter>: array of holidays</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>days</parameter> may be negative.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-NETWORKDAYS"><function>NETWORKDAYS</function></link>.
       </para>
@@ -2286,6 +2662,26 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-DATE"><function>DATE</function></link>.
       </para>
@@ -2334,6 +2730,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>BESSELI</function>(<parameter>X</parameter>,<parameter/>α)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>X</parameter>: number</para>
+        <para>@{α}: order (any number)</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> or @{α} are not numeric, #VALUE! is returned. If @{α} &lt; 0, #NUM! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-BESSELJ"><function>BESSELJ</function></link>,
@@ -2354,6 +2763,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>BESSELJ</function>(<parameter>X</parameter>,<parameter/>α)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>X</parameter>: number</para>
+        <para>@{α}: order (any non-negative integer)</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> or @{α} are not numeric, #VALUE! is returned. If @{α} &lt; 0, #NUM! is returned. If @{α} is not an integer, it is truncated.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-BESSELI"><function>BESSELI</function></link>,
@@ -2374,6 +2796,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>BESSELK</function>(<parameter>X</parameter>,<parameter/>α)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>X</parameter>: number</para>
+        <para>@{α}: order (any number)</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> or @{α} are not numeric, #VALUE! is returned. If @{α} &lt; 0, #NUM! is returned.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-BESSELI"><function>BESSELI</function></link>,
@@ -2394,6 +2829,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>BESSELY</function>(<parameter>X</parameter>,<parameter/>α)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>X</parameter>: number</para>
+        <para>@{α}: order (any non-negative integer)</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> or @{α} are not numeric, #VALUE! is returned. If @{α} &lt; 0, #NUM! is returned. If @{α} is not an integer, it is truncated.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-BESSELI"><function>BESSELI</function></link>,
@@ -2502,9 +2950,10 @@
         <para><parameter>from</parameter>: unit (string)</para>
         <para><parameter>to</parameter>: unit (string)</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>CONVERT</function>(<parameter>x</parameter>,<parameter>from</parameter>,<parameter>to</parameter>))</synopsis>
-      </refsynopsisdiv>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>from</parameter> and <parameter>to</parameter> are different types, <function>CONVERT</function> returns #N/A!</para>
+      </refsect1>
       <refsect1>
         <title>Description</title>
         <para><parameter>from</parameter> and <parameter>to</parameter> can be any of the following:</para>
@@ -2598,9 +3047,6 @@
         <para>	'a'  	atto  		1E-18</para>
         <para>	'z'  	zepto 		1E-21</para>
         <para>	'y'  	yocto 		1E-24</para>
-        <para><parameter>x</parameter>: number</para>
-        <para><parameter>from</parameter>: unit (string)</para>
-        <para><parameter>to</parameter>: unit (string)</para>
       </refsect1>
     </refentry>
     <refentry id="gnumeric-DEC2BIN">
@@ -2730,6 +3176,10 @@
         <para><parameter>x1</parameter>: number, defaults to 0</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If either argument is non-numeric, #VALUE! is returned.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-EXACT"><function>EXACT</function></link>,
         <link linkend="gnumeric-GESTEP"><function>GESTEP</function></link>.
@@ -2811,6 +3261,10 @@
         <para><parameter>x1</parameter>: number, defaults to 0</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If either argument is non-numeric, #VALUE! is returned.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-DELTA"><function>DELTA</function></link>.
       </para>
@@ -2911,11 +3365,20 @@
       </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
-        <para><function>INVSUMINV</function> sum calculates the reciprocal (the inverse) of the sum of reciprovals (inverses) of all its arguments.</para>
+        <para>.</para>
         <para><parameter>x0</parameter>: non-negative number</para>
         <para><parameter>x1</parameter>: non-negative number</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If any of the arguments is negative, #VALUE! is returned.</para>
+        <para>If any argument is zero, the result is zero.</para>
+      </refsect1>
+      <refsect1>
+        <title>Description</title>
+        <para><function>INVSUMINV</function> sum calculates the reciprocal (the inverse) of the sum of reciprovals (inverses) of all its arguments.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-HARMEAN"><function>HARMEAN</function></link>.
       </para>
@@ -3082,6 +3545,10 @@
         <para><parameter>circuits</parameter>: number of circuits</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>traffic</parameter> cannot exceed <parameter>circuits</parameter>.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PROBBLOCK"><function>PROBBLOCK</function></link>,
         <link linkend="gnumeric-DIMCIRC"><function>DIMCIRC</function></link>,
@@ -3111,6 +3578,10 @@
         <para><parameter>circuits</parameter>: number of circuits</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>traffic</parameter> cannot exceed <parameter>circuits</parameter>.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-OFFTRAF"><function>OFFTRAF</function></link>,
         <link linkend="gnumeric-DIMCIRC"><function>DIMCIRC</function></link>,
@@ -3148,6 +3619,30 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>frequency</parameter> may be 1 (annual), 2 (semi-annual), or 4 (quarterly).</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-ACCRINTM"><function>ACCRINTM</function></link>.
       </para>
@@ -3178,6 +3673,30 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>par</parameter> defaults to $1000.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-ACCRINT"><function>ACCRINT</function></link>.
       </para>
@@ -3210,6 +3729,30 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>Named for AMORtissement DEGRessif Comptabilite.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-AMORLINC"><function>AMORLINC</function></link>.
       </para>
@@ -3242,6 +3785,30 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>Named for AMORtissement LINeaire Comptabilite.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-AMORDEGRC"><function>AMORDEGRC</function></link>.
       </para>
@@ -3272,6 +3839,30 @@
         <para><parameter>eom</parameter>: end-of-month flag</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>frequency</parameter> may be 1 (annual), 2 (semi-annual), or 4 (quarterly).</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-COUPDAYS"><function>COUPDAYS</function></link>.
       </para>
@@ -3302,6 +3893,30 @@
         <para><parameter>eom</parameter>: end-of-month flag</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>frequency</parameter> may be 1 (annual), 2 (semi-annual), or 4 (quarterly).</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-COUPDAYBS"><function>COUPDAYBS</function></link>,
         <link linkend="gnumeric-COUPDAYSNC"><function>COUPDAYSNC</function></link>.
@@ -3333,6 +3948,30 @@
         <para><parameter>eom</parameter>: end-of-month flag</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>frequency</parameter> may be 1 (annual), 2 (semi-annual), or 4 (quarterly).</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-COUPDAYS"><function>COUPDAYS</function></link>,
         <link linkend="gnumeric-COUPDAYBS"><function>COUPDAYBS</function></link>.
@@ -3364,6 +4003,30 @@
         <para><parameter>eom</parameter>: end-of-month flag</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>frequency</parameter> may be 1 (annual), 2 (semi-annual), or 4 (quarterly).</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-COUPPCD"><function>COUPPCD</function></link>,
         <link linkend="gnumeric-COUPDAYS"><function>COUPDAYS</function></link>,
@@ -3396,6 +4059,30 @@
         <para><parameter>eom</parameter>: end-of-month flag</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>frequency</parameter> may be 1 (annual), 2 (semi-annual), or 4 (quarterly).</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-COUPNCD"><function>COUPNCD</function></link>,
         <link linkend="gnumeric-COUPPCD"><function>COUPPCD</function></link>.
@@ -3427,6 +4114,30 @@
         <para><parameter>eom</parameter>: end-of-month flag</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>frequency</parameter> may be 1 (annual), 2 (semi-annual), or 4 (quarterly).</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-COUPNCD"><function>COUPNCD</function></link>,
         <link linkend="gnumeric-COUPDAYS"><function>COUPDAYS</function></link>,
@@ -3483,6 +4194,10 @@
         <para><parameter>type</parameter>: payment type</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>type</parameter> is 0, the default, payment is at the end of each period.  If <parameter>type</parameter> is 1, payment is at the beginning of each period.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IPMT"><function>IPMT</function></link>.
       </para>
@@ -3514,6 +4229,10 @@
         <para><parameter>type</parameter>: payment type</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>type</parameter> is 0, the default, payment is at the end of each period.  If <parameter>type</parameter> is 1, payment is at the beginning of each period.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PPMT"><function>PPMT</function></link>.
       </para>
@@ -3608,6 +4327,30 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>redemption</parameter> is the redemption value per $100 face value.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PRICEMAT"><function>PRICEMAT</function></link>.
       </para>
@@ -3693,6 +4436,30 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>frequency</parameter> may be 1 (annual), 2 (semi-annual), or 4 (quarterly).</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-MDURATION"><function>MDURATION</function></link>.
       </para>
@@ -3746,6 +4513,14 @@
         <para><parameter>currency</parameter>: three-letter currency code</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>currency</parameter> must be one of ATS (Austria), BEF (Belgium), DEM (Germany), ESP (Spain), EUR (Euro), FIM (Finland), FRF (France), GRD (Greece), IEP (Ireland), ITL (Italy), LUF (Luxembourg), NLG (The Netherlands), or PTE (Portugal).</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>This function is not likely to be useful anymore.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-EUROCONVERT"><function>EUROCONVERT</function></link>.
       </para>
@@ -3774,6 +4549,14 @@
         <para><parameter>target</parameter>: three-letter target currency code</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>source</parameter> and <parameter>target</parameter> must be one of the currencies listed for the EURO function.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>This function is not likely to be useful anymore.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-EURO"><function>EURO</function></link>.
       </para>
@@ -3804,6 +4587,10 @@
         <para><parameter>type</parameter>: payment type</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>type</parameter> is 0, the default, payment is at the end of each period.  If <parameter>type</parameter> is 1, payment is at the beginning of each period.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PV"><function>PV</function></link>.
       </para>
@@ -3890,6 +4677,26 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RECEIVED"><function>RECEIVED</function></link>.
       </para>
@@ -3921,6 +4728,10 @@
         <para><parameter>type</parameter>: payment type</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>type</parameter> is 0, the default, payment is at the end of each period.  If <parameter>type</parameter> is 1, payment is at the beginning of each period.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PPMT"><function>PPMT</function></link>.
       </para>
@@ -3948,6 +4759,10 @@
         <para><parameter>guess</parameter>: an estimate of what the result should be</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>The optional <parameter>guess</parameter> is needed because there can be more than one valid result.  It defaults to 10%.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-XIRR"><function>XIRR</function></link>.
       </para>
@@ -4008,6 +4823,30 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>frequency</parameter> may be 1 (annual), 2 (semi-annual), or 4 (quarterly).</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-DURATION"><function>DURATION</function></link>.
       </para>
@@ -4094,6 +4933,10 @@
         <para><parameter>type</parameter>: payment type</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>type</parameter> is 0, the default, payment is at the end of each period.  If <parameter>type</parameter> is 1, payment is at the beginning of each period.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PV"><function>PV</function></link>,
         <link linkend="gnumeric-FV"><function>FV</function></link>.
@@ -4123,6 +4966,10 @@
         <para><parameter>value2</parameter>: cash flow for period 2</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>type</parameter> is 0, the default, payment is at the end of each period.  If <parameter>type</parameter> is 1, payment is at the beginning of each period.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PV"><function>PV</function></link>.
       </para>
@@ -4157,6 +5004,30 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>frequency</parameter> may be 1 (annual), 2 (semi-annual), or 4 (quarterly).</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-ODDLPRICE"><function>ODDLPRICE</function></link>,
         <link linkend="gnumeric-ODDFYIELD"><function>ODDFYIELD</function></link>.
@@ -4192,6 +5063,30 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>frequency</parameter> may be 1 (annual), 2 (semi-annual), or 4 (quarterly).</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-ODDFPRICE"><function>ODDFPRICE</function></link>,
         <link linkend="gnumeric-ODDLYIELD"><function>ODDLYIELD</function></link>.
@@ -4226,6 +5121,30 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>frequency</parameter> may be 1 (annual), 2 (semi-annual), or 4 (quarterly).</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-YIELD"><function>YIELD</function></link>,
         <link linkend="gnumeric-DURATION"><function>DURATION</function></link>.
@@ -4260,6 +5179,30 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>frequency</parameter> may be 1 (annual), 2 (semi-annual), or 4 (quarterly).</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-YIELD"><function>YIELD</function></link>,
         <link linkend="gnumeric-DURATION"><function>DURATION</function></link>.
@@ -4382,6 +5325,26 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>OPT_BINOMIAL</function>(<parameter>amer_euro_flag</parameter>,<parameter>call_put_flag</parameter>,<parameter>num_time_steps</parameter>,<parameter>spot</parameter>,<parameter>strike</parameter>,<parameter>time</parameter>,<parameter>rate</parameter>,<parameter>volatility</parameter>,<parameter>cost_of_carry</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>amer_euro_flag</parameter>: 'a' for an American style option or 'e' for a European style option</para>
+        <para><parameter>call_put_flag</parameter>: 'c' for a call and 'p' for a put</para>
+        <para><parameter>num_time_steps</parameter>: number of time steps used in the valuation</para>
+        <para><parameter>spot</parameter>: spot price</para>
+        <para><parameter>strike</parameter>: strike price</para>
+        <para><parameter>time</parameter>: time to maturity in years</para>
+        <para><parameter>rate</parameter>: annualized risk-free interest rate</para>
+        <para><parameter>volatility</parameter>: annualized volatility of the asset</para>
+        <para><parameter>cost_of_carry</parameter>: net cost of holding the underlying asset</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>A larger <parameter>num_time_steps</parameter> yields greater accuracy but  <function>OPT_BINOMIAL</function> is slower to calculate.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-OPT_BS"><function>OPT_BS</function></link>,
@@ -4441,6 +5404,10 @@
         <para><parameter>cost_of_carry</parameter>: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>The returned value will be expressed in the same units as <parameter>strike</parameter> and <parameter>spot</parameter>.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-OPT_BS_DELTA"><function>OPT_BS_DELTA</function></link>,
         <link linkend="gnumeric-OPT_BS_RHO"><function>OPT_BS_RHO</function></link>,
@@ -4476,19 +5443,9 @@
         <para><parameter>volatility</parameter>: annualized volatility of the asset in percent for the period through to the exercise date</para>
         <para><parameter>cost_of_carry</parameter>: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>OPT_BS_CARRYCOST</function>(<parameter>call_put_flag</parameter>,<parameter>spot</parameter>,<parameter>strike</parameter>,<parameter>time</parameter>,<parameter>rate</parameter>,<parameter>volatility</parameter>,<parameter>cost_of_carry</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
-        <title>Description</title>
-        <para/>
-        <para><parameter>call_put_flag</parameter>: 'c' for a call and 'p' for a put</para>
-        <para><parameter>spot</parameter>: spot price</para>
-        <para><parameter>strike</parameter>: strike price</para>
-        <para><parameter>time</parameter>: time to maturity in years</para>
-        <para><parameter>rate</parameter>: risk-free interest rate to the exercise date in percent</para>
-        <para><parameter>volatility</parameter>: annualized volatility of the asset in percent for the period through to the exercise date</para>
-        <para><parameter>cost_of_carry</parameter>: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0</para>
+        <title>Note</title>
+        <para>Elasticity is expressed as the rate of change of the option value, per 100% volatility.</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -4527,6 +5484,10 @@
         <para><parameter>cost_of_carry</parameter>: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>The returned value will be expressed in the same units as <parameter>strike</parameter> and <parameter>spot</parameter>.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-OPT_BS"><function>OPT_BS</function></link>,
         <link linkend="gnumeric-OPT_BS_RHO"><function>OPT_BS_RHO</function></link>,
@@ -4562,6 +5523,14 @@
         <para><parameter>cost_of_carry</parameter>: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>Gamma is expressed as the rate of change of delta per unit change in <parameter>spot</parameter>.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>Gamma is the same for calls and puts.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-OPT_BS"><function>OPT_BS</function></link>,
         <link linkend="gnumeric-OPT_BS_DELTA"><function>OPT_BS_DELTA</function></link>,
@@ -4598,6 +5567,10 @@
         <para><parameter>cost_of_carry</parameter>: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>Rho is expressed as the rate of change of the option value, per 100% change in <parameter>rate</parameter>.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-OPT_BS"><function>OPT_BS</function></link>,
         <link linkend="gnumeric-OPT_BS_DELTA"><function>OPT_BS_DELTA</function></link>,
@@ -4634,6 +5607,10 @@
         <para><parameter>cost_of_carry</parameter>: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>Theta is expressed as the negative of the rate of change of the option value, per 365.25 days.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-OPT_BS"><function>OPT_BS</function></link>,
         <link linkend="gnumeric-OPT_BS_DELTA"><function>OPT_BS_DELTA</function></link>,
@@ -4669,6 +5646,14 @@
         <para><parameter>cost_of_carry</parameter>: net cost of holding the underlying asset (for common stocks, the risk free rate less the dividend yield), defaults to 0</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>Vega is the same for calls and puts.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>Vega is expressed as the rate of change of option value, per 100% volatility.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-OPT_BS"><function>OPT_BS</function></link>,
         <link linkend="gnumeric-OPT_BS_DELTA"><function>OPT_BS_DELTA</function></link>,
@@ -4753,6 +5738,25 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>OPT_EXEC</function>(<parameter>call_put_flag</parameter>,<parameter>spot</parameter>,<parameter>strike</parameter>,<parameter>time</parameter>,<parameter>rate</parameter>,<parameter>volatility</parameter>,<parameter>cost_of_carry</parameter>,<parameter>lambda</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>call_put_flag</parameter>: 'c' for a call and 'p' for a put</para>
+        <para><parameter>spot</parameter>: spot price</para>
+        <para><parameter>strike</parameter>: strike price</para>
+        <para><parameter>time</parameter>: time to maturity in days</para>
+        <para><parameter>rate</parameter>: annualized risk-free interest rate</para>
+        <para><parameter>volatility</parameter>: annualized volatility of the asset</para>
+        <para><parameter>cost_of_carry</parameter>: net cost of holding the underlying asset</para>
+        <para><parameter>lambda</parameter>: jump rate for executives</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>The model assumes executives forfeit their options if they leave the company.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-OPT_BS"><function>OPT_BS</function></link>,
@@ -5042,6 +6046,26 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>OPT_ON_OPTIONS</function>(<parameter>type_flag</parameter>,<parameter>spot</parameter>,<parameter>strike1</parameter>,<parameter>strike2</parameter>,<parameter>time1</parameter>,<parameter>time2</parameter>,<parameter>rate</parameter>,<parameter>cost_of_carry</parameter>,<parameter>volatility</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>type_flag</parameter>: 'cc' for calls on calls, 'cp' for calls on puts, and so on for 'pc', and 'pp'.</para>
+        <para><parameter>spot</parameter>: spot price</para>
+        <para><parameter>strike1</parameter>: strike price at which the option being valued is struck</para>
+        <para><parameter>strike2</parameter>: strike price at which the underlying option is struck</para>
+        <para><parameter>time1</parameter>: time in years to maturity of the option</para>
+        <para><parameter>time2</parameter>: time in years to the maturity of the underlying option</para>
+        <para><parameter>rate</parameter>: annualized risk-free interest rate</para>
+        <para><parameter>cost_of_carry</parameter>: net cost of holding the underlying asset of the underlying option (for common stocks, the risk free rate less the dividend yield)</para>
+        <para><parameter>volatility</parameter>: annualized volatility in price of the underlying asset of the underlying option</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para><parameter>time2</parameter> â?¥ <parameter>time1</parameter></para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-OPT_BS"><function>OPT_BS</function></link>,
@@ -5182,6 +6206,10 @@
         <para><parameter>type</parameter>: payment type</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>type</parameter> is 0, the default, payment is at the end of each period.  If <parameter>type</parameter> is 1, payment is at the beginning of each period.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PV"><function>PV</function></link>,
         <link linkend="gnumeric-FV"><function>FV</function></link>,
@@ -5216,6 +6244,10 @@
         <para><parameter>type</parameter>: payment type</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>type</parameter> is 0, the default, payment is at the end of each period.  If <parameter>type</parameter> is 1, payment is at the beginning of each period.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IPMT"><function>IPMT</function></link>.
       </para>
@@ -5248,6 +6280,30 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>frequency</parameter> may be 1 (annual), 2 (semi-annual), or 4 (quarterly).</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-YIELD"><function>YIELD</function></link>,
         <link linkend="gnumeric-DURATION"><function>DURATION</function></link>.
@@ -5279,6 +6335,26 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PRICEMAT"><function>PRICEMAT</function></link>.
       </para>
@@ -5310,6 +6386,26 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PRICEDISC"><function>PRICEDISC</function></link>.
       </para>
@@ -5340,6 +6436,10 @@
         <para><parameter>type</parameter>: payment type</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>type</parameter> is 0, the default, payment is at the end of each period.  If <parameter>type</parameter> is 1, payment is at the beginning of each period.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-FV"><function>FV</function></link>.
       </para>
@@ -5371,6 +6471,14 @@
         <para><parameter>guess</parameter>: an estimate of what the result should be</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>type</parameter> is 0, the default, payment is at the end of each period.  If <parameter>type</parameter> is 1, payment is at the beginning of each period.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>The optional <parameter>guess</parameter> is needed because there can be more than one valid result.  It defaults to 10%.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PV"><function>PV</function></link>,
         <link linkend="gnumeric-FV"><function>FV</function></link>.
@@ -5402,6 +6510,26 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-INTRATE"><function>INTRATE</function></link>.
       </para>
@@ -5430,6 +6558,14 @@
         <para><parameter>fv</parameter>: future value</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>type</parameter> is 0, the default, payment is at the end of each period.  If <parameter>type</parameter> is 1, payment is at the beginning of each period.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>Note that <parameter>p</parameter> need not be an integer but for fractional value the calculated rate is only approximate.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PV"><function>PV</function></link>,
         <link linkend="gnumeric-FV"><function>FV</function></link>,
@@ -5612,6 +6748,10 @@
         <para><parameter>no_switch</parameter>: do not switch to straight-line depreciation</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>no_switch</parameter> is FALSE, the calculation switches to straight-line depreciation when depreciation is greater than the declining balance calculation.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-DB"><function>DB</function></link>,
         <link linkend="gnumeric-DDB"><function>DDB</function></link>.
@@ -5641,6 +6781,10 @@
         <para><parameter>guess</parameter>: an estimate of what the result should be</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>The optional <parameter>guess</parameter> is needed because there can be more than one valid result.  It defaults to 10%.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IRR"><function>IRR</function></link>.
       </para>
@@ -5669,6 +6813,10 @@
         <para><parameter>dates</parameter>: dates of cash flow</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>type</parameter> is 0, the default, payment is at the end of each period.  If <parameter>type</parameter> is 1, payment is at the beginning of each period.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-NPV"><function>NPV</function></link>.
       </para>
@@ -5701,6 +6849,30 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>frequency</parameter> may be 1 (annual), 2 (semi-annual), or 4 (quarterly).</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PRICE"><function>PRICE</function></link>,
         <link linkend="gnumeric-DURATION"><function>DURATION</function></link>.
@@ -5732,6 +6904,26 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PRICE"><function>PRICE</function></link>,
         <link linkend="gnumeric-DURATION"><function>DURATION</function></link>.
@@ -5764,6 +6956,26 @@
         <para><parameter>basis</parameter>: calendar basis</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 0, then the US 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 1, then actual number of days is used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 2, then actual number of days is used within a month, but years are considered only 360 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 3, then actual number of days is used within a month, but years are always considered 365 days.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>basis</parameter> is 4, then the European 30/360 method is used.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-YIELDDISC"><function>YIELDDISC</function></link>,
         <link linkend="gnumeric-YIELD"><function>YIELD</function></link>.
@@ -5934,6 +7146,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>EXPRESSION</function>(<parameter>cell</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>cell</parameter>: a cell reference</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>cell</parameter> contains no expression, <function>EXPRESSION</function> returns empty.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-TEXT"><function>TEXT</function></link>.
@@ -5970,6 +7194,22 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>GETENV</function>(<parameter>name</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>name</parameter>: the name of the environment variable</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If a variable called <parameter>name</parameter> does not exist, #N/A! will be returned.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>Variable names are case sensitive.</para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-INFO">
       <refmeta>
@@ -6017,6 +7257,14 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>ISBLANK</function>(<parameter>value</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>This function checks if a value is blank.  Empty cells are blank, but empty strings are not.</para>
+        <para><parameter>value</parameter>: a value</para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-ISERR">
       <refmeta>
@@ -6085,6 +7333,14 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>ISLOGICAL</function>(<parameter>value</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>This function checks if a value is either TRUE or FALSE.</para>
+        <para><parameter>value</parameter>: a value</para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-ISNA">
       <refmeta>
@@ -6134,6 +7390,14 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>ISNUMBER</function>(<parameter>value</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>This function checks if a value is a number.  Neither TRUE nor FALSE are numbers for this purpose.</para>
+        <para><parameter>value</parameter>: a value</para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-ISODD">
       <refmeta>
@@ -6165,6 +7429,14 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>ISREF</function>(<parameter>value</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>This function checks if a value is a cell reference.</para>
+        <para><parameter>value</parameter>: a value</para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-ISTEXT">
       <refmeta>
@@ -6196,6 +7468,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>N</function>(<parameter>text</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>text</parameter>: string</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>text</parameter> contains non-numerical text, 0 is returned.</para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-NA">
       <refmeta>
@@ -6266,6 +7550,22 @@
         <para><parameter>b1</parameter>: logical value</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If an argument is numerical, zero is considered FALSE and anything else TRUE.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>Strings and empty values are ignored.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If no logical values are provided, then the error #VALUE! is returned.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>This function is strict: if any argument is an error, the result will be the first such error.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-OR"><function>OR</function></link>,
         <link linkend="gnumeric-NOT"><function>NOT</function></link>,
@@ -6380,6 +7680,14 @@
         <para><parameter>b</parameter>: logical value</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If the argument is numerical, zero is considered FALSE and anything else TRUE.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>Strings and empty values are ignored.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-AND"><function>AND</function></link>,
         <link linkend="gnumeric-OR"><function>OR</function></link>,
@@ -6409,6 +7717,22 @@
         <para><parameter>b1</parameter>: logical value</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If an argument is numerical, zero is considered FALSE and anything else TRUE.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>Strings and empty values are ignored.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If no logical values are provided, then the error #VALUE! is returned.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>This function is strict: if any argument is an error, the result will be the first such error.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-AND"><function>AND</function></link>,
         <link linkend="gnumeric-XOR"><function>XOR</function></link>,
@@ -6465,6 +7789,22 @@
         <para><parameter>b1</parameter>: logical value</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If an argument is numerical, zero is considered FALSE and anything else TRUE.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>Strings and empty values are ignored.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If no logical values are provided, then the error #VALUE! is returned.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>This function is strict: if any argument is an error, the result will be the first such error.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-OR"><function>OR</function></link>,
         <link linkend="gnumeric-AND"><function>AND</function></link>,
@@ -6488,6 +7828,26 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>ADDRESS</function>(<parameter>row_num</parameter>,<parameter>col_num</parameter>,<parameter>abs_num</parameter>,<parameter>a1</parameter>,<parameter>text</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>row_num</parameter>: row number</para>
+        <para><parameter>col_num</parameter>: column number</para>
+        <para><parameter>abs_num</parameter>: 1 for an absolute, 2 for a row absolute and column relative, 3 for a row relative and column absolute, and 4 for a relative reference; defaults to 1</para>
+        <para><parameter>a1</parameter>: if TRUE, an A1-style reference is provided, otherwise an R1C1-style reference; defaults to TRUE</para>
+        <para><parameter>text</parameter>: name of the worksheet, defaults to no sheet</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>row_num</parameter> or <parameter>col_num</parameter> is less than one, <function>ADDRESS</function> returns #VALUE!</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>abs_num</parameter> is greater than 4 <function>ADDRESS</function> returns #VALUE!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-COLUMNNUMBER"><function>COLUMNNUMBER</function></link>.
@@ -6538,6 +7898,10 @@
         <para><parameter>value2</parameter>: second value</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para><parameter>index</parameter> is truncated to an integer. If <parameter>index</parameter> &lt; 1 or the truncated <parameter>index</parameter> &gt; number of values, <function>CHOOSE</function> returns #VALUE!</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-IF"><function>IF</function></link>.
       </para>
@@ -6564,6 +7928,10 @@
         <para><parameter>x</parameter>: reference, defaults to the position of the current expression</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>reference</parameter> is neither an array nor a reference nor a range, returns #VALUE!</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-COLUMNS"><function>COLUMNS</function></link>,
         <link linkend="gnumeric-ROW"><function>ROW</function></link>,
@@ -6583,6 +7951,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>COLUMNNUMBER</function>(<parameter>name</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>name</parameter>: column name such as "IV"</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>name</parameter> is invalid, <function>COLUMNNUMBER</function> returns #VALUE!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-ADDRESS"><function>ADDRESS</function></link>.
@@ -6601,6 +7981,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>COLUMNS</function>(<parameter>reference</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>reference</parameter>: array or area</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>reference</parameter> is neither an array nor a reference nor a range, <function>COLUMNS</function> returns #VALUE!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-COLUMN"><function>COLUMN</function></link>,
@@ -6634,6 +8026,14 @@
         <para><parameter>as_index</parameter>: if true, the 0-based row offset is returned; defaults to FALSE</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>approximate</parameter> is true, then the values must be sorted in order of ascending value.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para><function>HLOOKUP</function> returns #REF! if <parameter>row</parameter> falls outside <parameter>range</parameter>.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-VLOOKUP"><function>VLOOKUP</function></link>.
       </para>
@@ -6684,6 +8084,10 @@
         <para><parameter>col</parameter>: desired column, defaults to 1</para>
         <para><parameter>area</parameter>: from which area to select a cell, defaults to 1</para>
       </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If the reference falls outside the range of <parameter>array</parameter>, <function>INDEX</function> returns #REF!</para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-INDIRECT">
       <refmeta>
@@ -6697,6 +8101,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>INDIRECT</function>(<parameter>ref_text</parameter>,<parameter>format</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>ref_text</parameter>: </para>
+        <para><parameter>format</parameter>: if true, <parameter>ref_text</parameter> is given in A1-style, otherwise it is given in R1C1 style; defaults to true</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>ref_text</parameter> is not a valid reference in the style determined by <parameter>format</parameter>, <function>INDIRECT</function> returns #REF!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-AREAS"><function>AREAS</function></link>,
@@ -6728,6 +8145,22 @@
         <para><parameter>vector2</parameter>: range of return values</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <function>LOOKUP</function> can't find <parameter>value</parameter> it uses the largest value less than <parameter>value</parameter>.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>The data must be sorted.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>value</parameter> is smaller than the first value it returns #N/A.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If the corresponding location does not exist in <parameter>vector2</parameter>, it returns #N/A.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-VLOOKUP"><function>VLOOKUP</function></link>,
         <link linkend="gnumeric-HLOOKUP"><function>HLOOKUP</function></link>.
@@ -6757,6 +8190,18 @@
         <para><parameter>type</parameter>: +1 to find the largest value â?¤ <parameter>seek</parameter>, 0 to find the first value = <parameter>seek</parameter>, or-1 to find the smallest value â?¥ <parameter>seek</parameter></para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para> For <parameter>type</parameter> = -1 the data must be sorted in descending order; for <parameter>type</parameter> = +1 the data must be sorted in ascending order.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>seek</parameter> could not be found, #N/A is returned.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>vector</parameter> is neither n by 1 nor 1 by n, #N/A is returned.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-LOOKUP"><function>LOOKUP</function></link>.
       </para>
@@ -6787,6 +8232,10 @@
         <para><parameter>width</parameter>: width of the offset range, defaults to width of <parameter>range</parameter></para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>range</parameter> is neither a reference nor a range, <function>OFFSET</function> returns #VALUE!</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-COLUMN"><function>COLUMN</function></link>,
         <link linkend="gnumeric-COLUMNS"><function>COLUMNS</function></link>,
@@ -6818,6 +8267,10 @@
         <para><parameter>x</parameter>: reference, defaults to the position of the current expression</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>reference</parameter> is neither an array nor a reference nor a range, returns #VALUE!</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-COLUMN"><function>COLUMN</function></link>,
         <link linkend="gnumeric-COLUMNS"><function>COLUMNS</function></link>,
@@ -6837,6 +8290,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>ROWS</function>(<parameter>reference</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>reference</parameter>: array, reference, or range</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>reference</parameter> is neither an array nor a reference nor a range, <function>ROWS</function> returns #VALUE!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-COLUMN"><function>COLUMN</function></link>,
@@ -6888,6 +8353,14 @@
         <para><parameter>as_index</parameter>: if true, the 0-based row offset is returned; defaults to FALSE</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>approximate</parameter> is true, then the values must be sorted in order of ascending value.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para><function>VLOOKUP</function> returns #REF! if <parameter>row</parameter> falls outside <parameter>range</parameter>.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-HLOOKUP"><function>HLOOKUP</function></link>.
       </para>
@@ -7053,6 +8526,10 @@
         <para><parameter>x</parameter>: number</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> falls outside the range -1 to 1, <function>ASIN</function> returns #NUM!</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-SINCOS"><function>SINCOS</function></link>,
         <link linkend="gnumeric-ASINH"><function>ASINH</function></link>,
@@ -7175,6 +8652,10 @@
         <para><parameter>x</parameter>: angle in radians</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If the absolute value of <parameter>x</parameter> is greater than 1.0, <function>ATANH</function> returns #NUM!</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-ATAN"><function>ATAN</function></link>,
         <link linkend="gnumeric-COS"><function>COS</function></link>,
@@ -7225,6 +8706,10 @@
         <para><parameter>y</parameter>: number</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter>, <parameter>y</parameter>, or (<parameter>x</parameter> + <parameter>y</parameter>) are non-positive integers, <function>BETA</function> returns #NUM!</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-BETALN"><function>BETALN</function></link>,
         <link linkend="gnumeric-GAMMALN"><function>GAMMALN</function></link>.
@@ -7253,6 +8738,10 @@
         <para><parameter>y</parameter>: number</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter>, <parameter>y</parameter>, or (<parameter>x</parameter> + <parameter>y</parameter>) are non-positive integers, <function>BETALN</function> returns #NUM!</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-BETA"><function>BETA</function></link>,
         <link linkend="gnumeric-GAMMALN"><function>GAMMALN</function></link>.
@@ -7311,6 +8800,14 @@
         <para><parameter>significance</parameter>: base multiple (defaults to 1 for <parameter>x</parameter> &gt; 0 and -1 for <parameter>x</parameter> &lt;0)</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> or <parameter>significance</parameter> is non-numeric, <function>CEILING</function> returns a #VALUE! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> and <parameter>significance</parameter> have different signs, <function>CEILING</function> returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-CEIL"><function>CEIL</function></link>,
         <link linkend="gnumeric-FLOOR"><function>FLOOR</function></link>,
@@ -7341,6 +8838,10 @@
         <para><parameter>n</parameter>: non-negative integer</para>
         <para><parameter>k</parameter>: non-negative integer</para>
       </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>n</parameter> is less than <parameter>k</parameter> <function>COMBIN</function> returns #NUM!</para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-COMBINA">
       <refmeta>
@@ -7354,6 +8855,11 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsect1>
+        <title>See also</title>
+        <para><link linkend="gnumeric-COMBIN"><function>COMBIN</function></link>.
+      </para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-COS">
       <refmeta>
@@ -7367,6 +8873,14 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>COS</function>(<parameter>x</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>This function is Excel compatible.</para>
+        <para><parameter>x</parameter>: angle in radians</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-SIN"><function>SIN</function></link>,
@@ -7377,14 +8891,6 @@
         <link linkend="gnumeric-RADIANS"><function>RADIANS</function></link>,
         <link linkend="gnumeric-DEGREES"><function>DEGREES</function></link>.
       </para>
-        <refsynopsisdiv>
-          <synopsis><function>COS</function>(<parameter>x</parameter>)</synopsis>
-        </refsynopsisdiv>
-        <refsect1>
-          <title>Description</title>
-          <para>This function is Excel compatible.</para>
-          <para><parameter>x</parameter>: angle in radians</para>
-        </refsect1>
       </refsect1>
     </refentry>
     <refentry id="gnumeric-COSH">
@@ -7570,6 +9076,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>EXP</function>(<parameter>x</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>e is the base of the natural logarithm.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-LOG"><function>LOG</function></link>,
@@ -7590,6 +9108,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>EXPM1</function>(<parameter>x</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>This function has a higher resulting precision than evaluating EXP(<parameter>x</parameter>)-1.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-EXP"><function>EXP</function></link>,
@@ -7609,6 +9139,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>FACT</function>(<parameter>x</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>The domain of this function has been extended using the GAMMA function.</para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-FACTDOUBLE">
       <refmeta>
@@ -7623,12 +9165,16 @@
         <refpurpose/>
       </refnamediv>
       <refsynopsisdiv>
-        <synopsis><function>FACTDOUBLE</function>(<parameter>area0</parameter>)</synopsis>
+        <synopsis><function>FACTDOUBLE</function>(<parameter>x</parameter>)</synopsis>
       </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><function>FACTDOUBLE</function> function returns the double factorial <parameter>x</parameter>!!</para>
-        <para><parameter>area0</parameter>: first cell areax:non-negative integer</para>
+        <para><parameter>x</parameter>: non-negative integer</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> is not an integer, it is truncated. If <parameter>x</parameter> is negative, <function>FACTDOUBLE</function> returns #NUM!</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -7656,6 +9202,10 @@
         <para><function>FIB</function>(<parameter>n</parameter>) is the <parameter>n</parameter>th Fibonacci number.</para>
         <para><parameter>n</parameter>: positive integer</para>
       </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>n</parameter> is not an integer, it is truncated. If it is negative or zero <function>FIB</function> returns #NUM!</para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-FLOOR">
       <refmeta>
@@ -7700,6 +9250,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>G_PRODUCT</function>(<parameter>x1</parameter>,<parameter>x2</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x1</parameter>: number</para>
+        <para><parameter>x2</parameter>: number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>Empty cells are ignored and the empty product is 1.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-SUM"><function>SUM</function></link>,
@@ -7765,6 +9328,10 @@
         <para><parameter>n1</parameter>: positive integer</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If any of the arguments is not an integer, it is truncated.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-LCM"><function>LCM</function></link>.
       </para>
@@ -7852,6 +9419,10 @@
         <para><parameter>n1</parameter>: positive integer</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If any of the arguments is not an integer, it is truncated.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-GCD"><function>GCD</function></link>.
       </para>
@@ -7869,6 +9440,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>LN</function>(<parameter>x</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: positive number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> â?¤ 0, <function>LN</function> returns #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-EXP"><function>EXP</function></link>,
@@ -7898,6 +9481,10 @@
         <para><parameter>x</parameter>: positive number</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> â?¤ -1, LN returns #NUM! error.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-EXP"><function>EXP</function></link>,
         <link linkend="gnumeric-LN"><function>LN</function></link>,
@@ -7917,6 +9504,23 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>LOG</function>(<parameter>x</parameter>,<parameter>base</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: positive number</para>
+        <para><parameter>base</parameter>: base of the logarithm, defaults to 10</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para><parameter>base</parameter> must be positive and not equal to 1.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> â?¤ 0, <function>LOG</function> returns #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-LN"><function>LN</function></link>,
@@ -7937,6 +9541,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>LOG10</function>(<parameter>x</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: positive number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> â?¤ 0, <function>LOG10</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-EXP"><function>EXP</function></link>,
@@ -7957,6 +9573,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>LOG2</function>(<parameter>x</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: positive number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> â?¤ 0, <function>LOG2</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-EXP"><function>EXP</function></link>,
@@ -7996,6 +9624,22 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>MINVERSE</function>(<parameter>matrix</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>matrix</parameter>: a square matrix</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>matrix</parameter> is not invertible, <function>MINVERSE</function> returns #NUM!</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>matrix</parameter> does not contain an equal number of columns and rows, <function>MINVERSE</function> returns #VALUE!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-MMULT"><function>MMULT</function></link>,
@@ -8044,6 +9688,10 @@
         <para><parameter>n</parameter>: integer</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>n</parameter> is 0, <function>MOD</function> returns #DIV/0!</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-CEIL"><function>CEIL</function></link>,
         <link linkend="gnumeric-CEILING"><function>CEILING</function></link>,
@@ -8066,6 +9714,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>MROUND</function>(<parameter>x</parameter>,<parameter>m</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: number</para>
+        <para><parameter>m</parameter>: number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> and <parameter>m</parameter> have different sign, <function>MROUND</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-ROUNDDOWN"><function>ROUNDDOWN</function></link>,
@@ -8161,6 +9822,27 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>POWER</function>(<parameter>x</parameter>,<parameter>y</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: number</para>
+        <para><parameter>y</parameter>: number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If both <parameter>x</parameter> and <parameter>y</parameter> equal 0, <function>POWER</function> returns #NUM!</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> = 0 and <parameter>y</parameter> &lt; 0, <function>POWER</function> returns #DIV/0!</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> &lt; 0 and <parameter>y</parameter> is not an integer, <function>POWER</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-EXP"><function>EXP</function></link>.
@@ -8188,6 +9870,10 @@
         <para><parameter>values</parameter>: a list of values to multiply</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If all cells are empty, the result will be 0.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-SUM"><function>SUM</function></link>,
         <link linkend="gnumeric-COUNT"><function>COUNT</function></link>,
@@ -8514,6 +10200,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>SQRT</function>(<parameter>x</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: non-negative number</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> is negative, <function>SQRT</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-POWER"><function>POWER</function></link>.
@@ -8633,6 +10331,18 @@
         <para>Multiplies corresponding data entries in the given arrays or ranges, and then returns the sum of those products.</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If an entry is not numeric, the value zero is used instead.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If arrays or range arguments do not have the same dimensions, return #VALUE! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>SUMPRODUCTs arguments are arrays or ranges. Attempting to use A1:A5&gt;0 will not work, implicit intersection will kick in. Instead use --(A1:A5&gt;0)</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-SUM"><function>SUM</function></link>,
         <link linkend="gnumeric-PRODUCT"><function>PRODUCT</function></link>,
@@ -8709,6 +10419,11 @@
         <para><parameter>array1</parameter>: second cell area</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>array0</parameter> and <parameter>array1</parameter> have different number of data points, <function>SUMX2PY2</function> returns #N/A.</para>
+        <para>Strings and empty cells are simply ignored.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-SUMSQ"><function>SUMSQ</function></link>,
         <link linkend="gnumeric-SUMX2MY2"><function>SUMX2MY2</function></link>.
@@ -8737,6 +10452,11 @@
         <para><parameter>array1</parameter>: second cell area</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>array0</parameter> and <parameter>array1</parameter> have different number of data points, <function>SUMXMY2</function> returns #N/A.</para>
+        <para>Strings and empty cells are simply ignored.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-SUMSQ"><function>SUMSQ</function></link>,
         <link linkend="gnumeric-SUMX2MY2"><function>SUMX2MY2</function></link>,
@@ -8804,6 +10524,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>TRUNC</function>(<parameter>x</parameter>,<parameter>x</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: number</para>
+        <para><parameter>x</parameter>: non-negative integer, defaults to 0</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>d</parameter> is omitted or negative then it defaults to zero. If it is not an integer then it is truncated to an integer.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-INT"><function>INT</function></link>.
@@ -8936,6 +10669,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>NT_PHI</function>(<parameter>n</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>n</parameter>: positive integer</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>Euler's totient function gives the number of integers less than or equal to <parameter>n</parameter> that are relatively prime (coprime) to <parameter>n</parameter>.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-NT_D"><function>NT_D</function></link>,
@@ -9022,6 +10767,10 @@
         <para><parameter>n</parameter>: positive integer</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>The argument <parameter>n</parameter> must be at least 2. Otherwise a #VALUE! error is returned.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-ITHPRIME"><function>ITHPRIME</function></link>.
       </para>
@@ -9060,6 +10809,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>RANDBERNOULLI</function>(<parameter>p</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>p</parameter>: probability of success</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 <function>RANDBERNOULLI</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RAND"><function>RAND</function></link>,
@@ -9098,6 +10859,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>RANDBETWEEN</function>(<parameter>bottom</parameter>,<parameter>top</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>bottom</parameter>: lower limit</para>
+        <para><parameter>top</parameter>: upper limit</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>bottom</parameter> &gt; <parameter>top</parameter>, <function>RANDBETWEEN</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RAND"><function>RAND</function></link>,
@@ -9117,6 +10891,23 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>RANDBINOM</function>(<parameter>p</parameter>,<parameter>n</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>p</parameter>: probability of success in a single trial</para>
+        <para><parameter>n</parameter>: number of trials</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 <function>RANDBINOM</function> returns #NUM!</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>n</parameter> &lt; 0 <function>RANDBINOM</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RAND"><function>RAND</function></link>,
@@ -9136,6 +10927,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>RANDCAUCHY</function>(<parameter>a</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>a</parameter>: scale parameter of the distribution</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>a</parameter> &lt; 0 <function>RANDCAUCHY</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RAND"><function>RAND</function></link>.
@@ -9183,6 +10986,18 @@
         <para><parameter>prob_range</parameter>: probabilities of the corresponding values in <parameter>val_range</parameter>, defaults to equal probabilities</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If the sum of all values in <parameter>prob_range</parameter> is not one, <function>RANDDISCRETE</function> returns #NUM!</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>val_range</parameter> and <parameter>prob_range</parameter> are not the same size, <function>RANDDISCRETE</function> returns #NUM!</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>val_range</parameter> or <parameter>prob_range</parameter> is not a range, <function>RANDDISCRETE</function> returns #VALUE!</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RANDBETWEEN"><function>RANDBETWEEN</function></link>,
         <link linkend="gnumeric-RAND"><function>RAND</function></link>.
@@ -9229,14 +11044,9 @@
         <para><parameter>a</parameter>: scale parameter of the exponential power distribution</para>
         <para><parameter>b</parameter>: exponent of the exponential power distribution</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>RANDEXPPOW</function>(<parameter>a</parameter>,<parameter>b</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>For <parameter>b</parameter> = 2 the exponential power distribution reduces to the normal distribution with Ï? = a/sqrt(2)</para>
-        <para><parameter>a</parameter>: scale parameter of the exponential power distribution</para>
-        <para><parameter>b</parameter>: exponent of the exponential power distribution</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -9275,6 +11085,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>RANDGAMMA</function>(<parameter>a</parameter>,<parameter>b</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>a</parameter>: parameter of the Gamma distribution</para>
+        <para><parameter>b</parameter>: parameter of the Gamma distribution</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>a</parameter> â?¤ 0, <function>RANDGAMMA</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RAND"><function>RAND</function></link>.
@@ -9293,6 +11116,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>RANDGEOM</function>(<parameter>p</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>p</parameter>: probability of success in a single trial</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 <function>RANDGEOM</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RAND"><function>RAND</function></link>.
@@ -9311,6 +11146,20 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>RANDGUMBEL</function>(<parameter>a</parameter>,<parameter>b</parameter>,<parameter>type</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>a</parameter>: parameter of the Gumbel distribution</para>
+        <para><parameter>b</parameter>: parameter of the Gumbel distribution</para>
+        <para><parameter>type</parameter>: type of the Gumbel distribution, defaults to 1</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>type</parameter> is neither 1 nor 2, <function>RANDGUMBEL</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RAND"><function>RAND</function></link>.
@@ -9393,15 +11242,17 @@
         <para>@{α}: parameter of the Lévy distribution</para>
         <para>@{β}: parameter of the Lévy distribution, defaults to 0</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>RANDLEVY</function>(<parameter>c</parameter>,<parameter/>α,<parameter/>β))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>For @{α} = 2, @{β}=0, the Lévy distribution reduces to the normal distribution.</para>
-        <para><parameter>c</parameter>: parameter of the Lévy distribution</para>
-        <para>@{α}: parameter of the Lévy distribution</para>
-        <para>@{β}: parameter of the Lévy distribution, defaults to 0</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If @{α} � 0 or @{α} &gt; 2, <function>RANDLEVY</function> returns #NUM!</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If @{β} &lt; -1 or @{β} &gt; 1, <function>RANDLEVY</function> returns #NUM!</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -9421,6 +11272,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>RANDLOG</function>(<parameter>p</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>p</parameter>: probability</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 <function>RANDLOG</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RAND"><function>RAND</function></link>.
@@ -9457,6 +11320,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>RANDLOGNORM</function>(<parameter/>ζ,<parameter/>Ï?)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para>@{ζ}: parameter of the lognormal distribution</para>
+        <para>@{Ï?}: standard deviation of the distribution</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If @{Ï?} &lt; 0, <function>RANDLOGNORM</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RAND"><function>RAND</function></link>.
@@ -9475,6 +11351,23 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>RANDNEGBINOM</function>(<parameter>p</parameter>,<parameter>n</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>p</parameter>: probability of success in a single trial</para>
+        <para><parameter>n</parameter>: number of failures</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 <function>RANDNEGBINOM</function> returns #NUM!</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>n</parameter> &lt; 1 <function>RANDNEGBINOM</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RAND"><function>RAND</function></link>,
@@ -9494,6 +11387,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>RANDNORM</function>(<parameter/>μ,<parameter/>Ï?)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para>@{μ}: mean of the ditribution</para>
+        <para>@{Ï?}: standard deviation of the distribution</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If @{Ï?} &lt; 0, <function>RANDNORM</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RAND"><function>RAND</function></link>.
@@ -9512,6 +11418,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>RANDNORMTAIL</function>(<parameter>a</parameter>,<parameter/>Ï?)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>a</parameter>: lower limit of the tail</para>
+        <para>@{Ï?}: standard deviation of the normal distribution</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>The method is based on Marsaglia's famous rectangle-wedge-tail algorithm (Ann Math Stat 32, 894-899 (1961)), with this aspect explained in Knuth, v2, 3rd ed, p139, 586 (exercise 11).</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RAND"><function>RAND</function></link>.
@@ -9548,6 +11467,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>RANDPOISSON</function>(<parameter/>λ)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para>@{λ}: parameter of the Poisson distribution</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If @{λ} &lt; 0 <function>RANDPOISSON</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RAND"><function>RAND</function></link>,
@@ -9622,6 +11553,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>RANDUNIFORM</function>(<parameter>a</parameter>,<parameter>b</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>a</parameter>: lower limit of the uniform distribution</para>
+        <para><parameter>b</parameter>: upper limit of the uniform distribution</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>a</parameter> &gt; <parameter>b</parameter> <function>RANDUNIFORM</function> returns #NUM!</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RANDBETWEEN"><function>RANDBETWEEN</function></link>,
@@ -9750,6 +11694,23 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>BERNOULLI</function>(<parameter>k</parameter>,<parameter>p</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>k</parameter>: </para>
+        <para><parameter>p</parameter>: probability of success</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>k</parameter> != 0 and <parameter>k</parameter> != 1 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RANDBERNOULLI"><function>RANDBERNOULLI</function></link>.
@@ -9768,6 +11729,30 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>BETADIST</function>(<parameter>x</parameter>,<parameter>alpha</parameter>,<parameter>beta</parameter>,<parameter>a</parameter>,<parameter>b</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: </para>
+        <para><parameter>alpha</parameter>: scale parameter</para>
+        <para><parameter>beta</parameter>: scale parameter</para>
+        <para><parameter>a</parameter>: optional lower bound, defaults to 0</para>
+        <para><parameter>b</parameter>: optional upper bound, defaults to 1</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> &lt; <parameter>a</parameter> or <parameter>x</parameter> &gt; <parameter>b</parameter> this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>alpha</parameter> &lt;= 0 or <parameter>beta</parameter> &lt;= 0, this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>a</parameter> &gt;= <parameter>b</parameter> this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-BETAINV"><function>BETAINV</function></link>.
@@ -9786,6 +11771,30 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>BETAINV</function>(<parameter>p</parameter>,<parameter>alpha</parameter>,<parameter>beta</parameter>,<parameter>a</parameter>,<parameter>b</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>p</parameter>: probability</para>
+        <para><parameter>alpha</parameter>: scale parameter</para>
+        <para><parameter>beta</parameter>: scale parameter</para>
+        <para><parameter>a</parameter>: optional lower bound, defaults to 0</para>
+        <para><parameter>b</parameter>: optional upper bound, defaults to 1</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>alpha</parameter> &lt;= 0 or <parameter>beta</parameter> &lt;= 0, this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>a</parameter> &gt;= <parameter>b</parameter> this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-BETADIST"><function>BETADIST</function></link>.
@@ -9804,6 +11813,33 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>BINOMDIST</function>(<parameter>n</parameter>,<parameter>trials</parameter>,<parameter>p</parameter>,<parameter>cumulative</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>n</parameter>: number of successes</para>
+        <para><parameter>trials</parameter>: number of trials</para>
+        <para><parameter>p</parameter>: probability of success in each trial</para>
+        <para><parameter>cumulative</parameter>: whether to evaluate the mass function or the cumulative distribution function</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>n</parameter> or <parameter>trials</parameter> are non-integer they are truncated.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>n</parameter> &lt; 0 or <parameter>trials</parameter> &lt; 0 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>n</parameter> &gt; <parameter>trials</parameter> this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-POISSON"><function>POISSON</function></link>.
@@ -9822,6 +11858,24 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>CAUCHY</function>(<parameter>x</parameter>,<parameter>a</parameter>,<parameter>cumulative</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: </para>
+        <para><parameter>a</parameter>: scale parameter</para>
+        <para><parameter>cumulative</parameter>: whether to evaluate the density function or the cumulative distribution function</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>a</parameter> &lt; 0 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>cumulative</parameter> is neither TRUE nor FALSE this function returns a #VALUE! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RANDCAUCHY"><function>RANDCAUCHY</function></link>.
@@ -9850,6 +11904,14 @@
         <para><parameter>dof</parameter>: number of degrees of freedom</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>dof</parameter> is non-integer it is truncated.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>dof</parameter> &lt; 1 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-CHIINV"><function>CHIINV</function></link>,
         <link linkend="gnumeric-CHITEST"><function>CHITEST</function></link>.
@@ -9878,6 +11940,10 @@
         <para><parameter>dof</parameter>: number of degrees of freedom</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 or <parameter>dof</parameter> &lt; 1 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-CHIDIST"><function>CHIDIST</function></link>,
         <link linkend="gnumeric-CHITEST"><function>CHITEST</function></link>.
@@ -9896,6 +11962,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>CHITEST</function>(<parameter>actual_range</parameter>,<parameter>theoretical_range</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>actual_range</parameter>: observed data</para>
+        <para><parameter>theoretical_range</parameter>: expected values</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If the actual range is not an n by 1 or 1 by n range, the returned value appears to have no sensible meaning.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-CHIDIST"><function>CHIDIST</function></link>,
@@ -9915,6 +11994,32 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>CONFIDENCE</function>(<parameter>alpha</parameter>,<parameter>stddev</parameter>,<parameter>size</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>alpha</parameter>: significance level</para>
+        <para><parameter>stddev</parameter>: population standard deviation</para>
+        <para><parameter>size</parameter>: sample size</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>This function requires the usually unknown population standard deviation.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>size</parameter> is non-integer it is truncated.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>size</parameter> &lt; 0 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>size</parameter> is 0 this function returns a #DIV/0! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-AVERAGE"><function>AVERAGE</function></link>.
@@ -10032,6 +12137,32 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>CRITBINOM</function>(<parameter>trials</parameter>,<parameter>p</parameter>,<parameter>alpha</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>trials</parameter>: number of trials</para>
+        <para><parameter>p</parameter>: probability of success in each trial</para>
+        <para><parameter>alpha</parameter>: significance level (area of the tail)</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>trials</parameter> is a non-integer it is truncated.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>trials</parameter> &lt; 0 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>alpha</parameter> &lt; 0 or <parameter>alpha</parameter> &gt; 1 this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-BINOMDIST"><function>BINOMDIST</function></link>.
@@ -10050,6 +12181,11 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsect1>
+        <title>See also</title>
+        <para><link linkend="gnumeric-VAR"><function>VAR</function></link>.
+      </para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-DEVSQ">
       <refmeta>
@@ -10101,6 +12237,10 @@
         <para><parameter>cumulative</parameter>: whether to evaluate the density function or the cumulative distribution function</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> &lt; 0 or <parameter>y</parameter> &lt;= 0 this will return an error.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-POISSON"><function>POISSON</function></link>.
       </para>
@@ -10157,6 +12297,14 @@
         <para><parameter>dof_of_denom</parameter>: denominator degrees of freedom</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> &lt; 0 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>dof_of_num</parameter> &lt; 1 or <parameter>dof_of_denom</parameter> &lt; 1, this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-FINV"><function>FINV</function></link>.
       </para>
@@ -10185,6 +12333,14 @@
         <para><parameter>dof_of_denom</parameter>: denomiantor degrees of freedom</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>dof_of_num</parameter> &lt; 1 or <parameter>dof_of_denom</parameter> &lt; 1 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-FDIST"><function>FDIST</function></link>.
       </para>
@@ -10202,6 +12358,22 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>FISHER</function>(<parameter>x</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: </para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> is not a number, this function returns a #VALUE! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> &lt;= -1 or <parameter>x</parameter> &gt;= 1, this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-FISHERINV"><function>FISHERINV</function></link>,
@@ -10221,6 +12393,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>FISHERINV</function>(<parameter>x</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: </para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> is a non-number this function returns a #VALUE! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-FISHER"><function>FISHER</function></link>,
@@ -10251,6 +12435,14 @@
         <para>@{known_x's}: known x-values</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>known_x</parameter> or <parameter>known_y</parameter> contains no data entries or different number of data entries, this function returns a #N/A error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If the variance of the <parameter>known_x</parameter> is zero, this function returns a #DIV/0 error.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-INTERCEPT"><function>INTERCEPT</function></link>,
         <link linkend="gnumeric-TREND"><function>TREND</function></link>.
@@ -10278,14 +12470,9 @@
         <para><parameter>data_array</parameter>: data values</para>
         <para><parameter>bins_array</parameter>: array of cutoff values</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>FREQUENCY</function>(<parameter>data_array</parameter>,<parameter>bins_array</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>If the <parameter>bin_array</parameter> is empty, this function returns the number of data points in <parameter>data_array</parameter>.</para>
-        <para><parameter>data_array</parameter>: data values</para>
-        <para><parameter>bins_array</parameter>: array of cutoff values</para>
       </refsect1>
     </refentry>
     <refentry id="gnumeric-FTEST">
@@ -10319,6 +12506,25 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>GAMMADIST</function>(<parameter>x</parameter>,<parameter>alpha</parameter>,<parameter>beta</parameter>,<parameter>cumulative</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: </para>
+        <para><parameter>alpha</parameter>: scale parameter</para>
+        <para><parameter>beta</parameter>: scale parameter</para>
+        <para><parameter>cumulative</parameter>: whether to evaluate the density function or the cumulative distribution function</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> &lt; 0 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>alpha</parameter> &lt;= 0 or <parameter>beta</parameter> &lt;= 0, this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-GAMMAINV"><function>GAMMAINV</function></link>.
@@ -10337,6 +12543,24 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>GAMMAINV</function>(<parameter>p</parameter>,<parameter>alpha</parameter>,<parameter>beta</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>p</parameter>: probability</para>
+        <para><parameter>alpha</parameter>: scale parameter</para>
+        <para><parameter>beta</parameter>: scale parameter</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>alpha</parameter> &lt;= 0 or <parameter>beta</parameter> &lt;= 0 this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-GAMMADIST"><function>GAMMADIST</function></link>.
@@ -10355,6 +12579,28 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>GEOMDIST</function>(<parameter>k</parameter>,<parameter>p</parameter>,<parameter>cumulative</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>k</parameter>: number of trials</para>
+        <para><parameter>p</parameter>: probability of success in any trial</para>
+        <para><parameter>cumulative</parameter>: whether to evaluate the mass function or the cumulative distribution function</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>k</parameter> &lt; 0 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>cumulative</parameter> is neither TRUE nor FALSE this function returns a #VALUE! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-RANDGEOM"><function>RANDGEOM</function></link>.
@@ -10415,16 +12661,13 @@
         <para>@{new_x's}: x-values for which you want to estimate the y-values; defaults to <parameter>known_x</parameter>'s</para>
         <para><parameter>const</parameter>: if this is false the line will be forced to go through the origin; defaults to TRUE</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>GROWTH</function>(<parameter>known_y</parameter>'s,<parameter>known_x</parameter>'s,<parameter>new_x</parameter>'s,<parameter>const</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><function>GROWTH</function> returns an array having one column and a row for each data point in <parameter>new_x</parameter>.</para>
-        <para>@{known_y's}: known y-values</para>
-        <para>@{known_x's}: known x-values; if <parameter>known_x</parameter>'s is omitted, an array {1, 2, 3, ...} is used.</para>
-        <para>@{new_x's}: x-values for which you want to estimate the y-values; defaults to <parameter>known_x</parameter>'s</para>
-        <para><parameter>const</parameter>: if this is false the line will be forced to go through the origin; defaults to TRUE</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>known_y</parameter>'s and <parameter>known_x</parameter>'s have unequal number of data points, this function returns a #NUM! error.</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -10477,6 +12720,30 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>HYPGEOMDIST</function>(<parameter>x</parameter>,<parameter>n</parameter>,<parameter>M</parameter>,<parameter>N</parameter>,<parameter>cumulative</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: number of successes</para>
+        <para><parameter>n</parameter>: sample size</para>
+        <para><parameter>M</parameter>: number of possible successes in the population</para>
+        <para><parameter>N</parameter>: population size</para>
+        <para><parameter>cumulative</parameter>: whether to evaluate the mass function or the cumulative distribution function</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter>,<parameter>n</parameter>,<parameter>M</parameter> or <parameter>N</parameter> is a non-integer it is truncated.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter>,<parameter>n</parameter>,<parameter>M</parameter> or <parameter>N</parameter> &lt; 0 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> &gt; <parameter>M</parameter> or <parameter>n</parameter> &gt; <parameter>N</parameter> this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-BINOMDIST"><function>BINOMDIST</function></link>,
@@ -10496,6 +12763,23 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>INTERCEPT</function>(<parameter>known_y</parameter>'s,<parameter>known_x</parameter>'s)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para>@{known_y's}: known y-values</para>
+        <para>@{known_x's}: known x-values</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>known_x</parameter> or <parameter>known_y</parameter> contains no data entries or different number of data entries, this function returns a #N/A error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If the variance of the <parameter>known_x</parameter> is zero, this function returns #DIV/0 error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-FORECAST"><function>FORECAST</function></link>,
@@ -10525,6 +12809,14 @@
         <para><parameter>number2</parameter>: second value</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>This is only meaningful if the underlying distribution really has a fourth moment.  The kurtosis is offset by three such that a normal distribution will have zero kurtosis.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If fewer than four numbers are given or all of them are equal this function returns a #DIV/0! error.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-AVERAGE"><function>AVERAGE</function></link>,
         <link linkend="gnumeric-VAR"><function>VAR</function></link>,
@@ -10555,6 +12847,10 @@
         <para><parameter>number2</parameter>: second value</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If fewer than two numbers are given or all of them are equal this function returns a #DIV/0! error.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-AVERAGE"><function>AVERAGE</function></link>,
         <link linkend="gnumeric-VARP"><function>VARP</function></link>,
@@ -10611,6 +12907,23 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>LARGE</function>(<parameter>data</parameter>,<parameter>k</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>data</parameter>: data set</para>
+        <para><parameter>k</parameter>: which value to find</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If data set is empty this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>k</parameter> &lt;= 0 or <parameter>k</parameter> is greater than the number of data items given this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PERCENTILE"><function>PERCENTILE</function></link>,
@@ -10643,27 +12956,17 @@
         <para><parameter>affine</parameter>: if true, the model contains a constant term, defaults to true.</para>
         <para><parameter>stats</parameter>: if true, some additional statistics are provided, defaults to false</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>LINEST</function>(<parameter>known_y</parameter>'s,<parameter>known_x</parameter>'s,<parameter>affine</parameter>,<parameter>stats</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>If <parameter>stats</parameter> is true, the second row contains the corresponding standard errors of the regression coefficients.In this case, the third row contains the R^2 value and the standard error for the predicted value. The fourth row contains the observed F value and its degrees of freedom. Finally, the fifth row contains the regression sum of squares and the residual sum of squares.</para>
-        <para>@{known_y's}: vector of values of dependent variable.</para>
-        <para>@{known_x's}: array of values of independent variables, defaults to a single vector 1,...,n.</para>
-        <para><parameter>affine</parameter>: if true, the model contains a constant term, defaults to true.</para>
-        <para><parameter>stats</parameter>: if true, some additional statistics are provided, defaults to false</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>LINEST</function>(<parameter>known_y</parameter>'s,<parameter>known_x</parameter>'s,<parameter>affine</parameter>,<parameter>stats</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>If <parameter>affine</parameter> is false, R^2 is the uncentered version of the coefficient of determination; that is the proportion of the sum of squares explained by the model.</para>
-        <para>@{known_y's}: vector of values of dependent variable.</para>
-        <para>@{known_x's}: array of values of independent variables, defaults to a single vector 1,...,n.</para>
-        <para><parameter>affine</parameter>: if true, the model contains a constant term, defaults to true.</para>
-        <para><parameter>stats</parameter>: if true, some additional statistics are provided, defaults to false</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If the length of @{known_y's} does not match the corresponding length of @{known_x's}, this function returns a #NUM! error.</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -10695,16 +12998,17 @@
         <para><parameter>const</parameter>: if this is false the line will be forced to go through (0,1); defaults to TRUE</para>
         <para><parameter>stat</parameter>: If <parameter>stat</parameter> is TRUE, extra statistical information will be returned; defaults to FALSE.</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>LOGEST</function>(<parameter>known_y</parameter>'s,<parameter>known_x</parameter>'s,<parameter>const</parameter>,<parameter>stat</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><function>LOGEST</function> returns an array { m{n},m{n-1}, ...,m{1},b }.</para>
-        <para>@{known_y's}: known y-values</para>
-        <para>@{known_x's}: known x-values; if <parameter>known_x</parameter>'s is omitted, an array {1, 2, 3, ...} is used.</para>
-        <para><parameter>const</parameter>: if this is false the line will be forced to go through (0,1); defaults to TRUE</para>
-        <para><parameter>stat</parameter>: If <parameter>stat</parameter> is TRUE, extra statistical information will be returned; defaults to FALSE.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>Extra statistical information is written below the regression line coefficients in the result array.  Extra statistical information consists of four rows of data.  In the first row the standard error values for the coefficients m1, (m2, ...), b are represented.  The second row contains the square of R and the standard error for the y estimate.  The third row contains the F-observed value and the degrees of freedom.  The last row contains the regression sum of squares and the residual sum of squares.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>known_y</parameter>'s and <parameter>known_x</parameter>'s have unequal number of data points, this function returns a #NUM! error.</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -10734,14 +13038,21 @@
         <para>@{known_y's}: known y-values</para>
         <para>@{known_x's}: known x-values</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>LOGFIT</function>(<parameter>known_y</parameter>'s,<parameter>known_x</parameter>'s))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><function>LOGFIT</function> returns an array having five columns and one row. `Sign' is given in the first column, `a', `b', and `c' are given in columns 2 to 4. Column 5 holds the sum of squared residuals.</para>
-        <para>@{known_y's}: known y-values</para>
-        <para>@{known_x's}: known x-values</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>An error is returned when there are less than 3 different x's or y's, or when the shape of the point cloud is too different from a ``logarithmic'' one.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>You can use the above formula = a + b * ln(sign * (x - c)) or rearrange it to = (exp((y - a) / b)) / sign + c to compute unknown y's or x's, respectively. </para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>This is non-linear fitting by trial-and-error. The accuracy of `c' is: width of x-range -&gt; rounded to the next smaller (10^integer), times 0.000001. There might be cases in which the returned fit is not the best possible.</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -10763,6 +13074,20 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>LOGINV</function>(<parameter>p</parameter>,<parameter>mean</parameter>,<parameter>stddev</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>p</parameter>: probability</para>
+        <para><parameter>mean</parameter>: mean</para>
+        <para><parameter>stddev</parameter>: standard deviation</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 or <parameter>stddev</parameter> &lt;= 0 this function returns #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-EXP"><function>EXP</function></link>,
@@ -10803,6 +13128,24 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>LOGNORMDIST</function>(<parameter>x</parameter>,<parameter>mean</parameter>,<parameter>stddev</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: </para>
+        <para><parameter>mean</parameter>: mean</para>
+        <para><parameter>stddev</parameter>: standard deviation</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>stddev</parameter> = 0 <function>LOGNORMDIST</function> returns a #DIV/0! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> &lt;= 0, <parameter>mean</parameter> &lt; 0 or <parameter>stddev</parameter> &lt;= 0 this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-NORMDIST"><function>NORMDIST</function></link>.
@@ -10832,16 +13175,13 @@
         <para><parameter>const</parameter>: If this is FALSE, the curve will be forced to go through [1; 0], i.e., b will be zero. The default is TRUE.</para>
         <para><parameter>stat</parameter>: If <parameter>stat</parameter> is TRUE, extra statistical information will be returned; defaults to FALSE.</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>LOGREG</function>(<parameter>known_y</parameter>'s,<parameter>known_x</parameter>'s,<parameter>const</parameter>,<parameter>stat</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>Any extra statistical information is written below m and b in the result array.  This extra statistical information consists of four rows of data:  In the first row the standard error values for the coefficients m, b are given.  The second row contains the square of R and the standard error for the y estimate. The third row contains the F-observed value and the degrees of freedom.  The last row contains the regression sum of squares and the residual sum of squares.The default of <parameter>stat</parameter> is FALSE.</para>
-        <para>@{known_y's}: known y-values</para>
-        <para>@{known_x's}: known x-values; if <parameter>known_x</parameter>'s is omitted, an array {1, 2, 3, ...} is used.</para>
-        <para><parameter>const</parameter>: If this is FALSE, the curve will be forced to go through [1; 0], i.e., b will be zero. The default is TRUE.</para>
-        <para><parameter>stat</parameter>: If <parameter>stat</parameter> is TRUE, extra statistical information will be returned; defaults to FALSE.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>known_y</parameter>'s and <parameter>known_x</parameter>'s have unequal number of data points, this function returns a #NUM! error.</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -10920,6 +13260,10 @@
         <para><parameter>number2</parameter>: second value</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If even numbers are given <function>MEDIAN</function> returns the average of the two numbers in the center.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-AVERAGE"><function>AVERAGE</function></link>,
         <link linkend="gnumeric-COUNT"><function>COUNT</function></link>,
@@ -10999,14 +13343,9 @@
         <para><parameter>number1</parameter>: first value</para>
         <para><parameter>number2</parameter>: second value</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>MODE</function>(<parameter>number1</parameter>,<parameter>number2</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>If the data set does not contain any duplicates this function returns a #N/A error.</para>
-        <para><parameter>number1</parameter>: first value</para>
-        <para><parameter>number2</parameter>: second value</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -11027,6 +13366,28 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>NEGBINOMDIST</function>(<parameter>f</parameter>,<parameter>t</parameter>,<parameter>p</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>f</parameter>: number of failures</para>
+        <para><parameter>t</parameter>: threshold number of successes</para>
+        <para><parameter>p</parameter>: probability of a success</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>f</parameter> or <parameter>t</parameter> is a non-integer it is truncated.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If (<parameter>f</parameter> + <parameter>t</parameter> -1) &lt;= 0 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 this functions returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-BINOMDIST"><function>BINOMDIST</function></link>,
@@ -11049,6 +13410,21 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>NORMDIST</function>(<parameter>x</parameter>,<parameter>mean</parameter>,<parameter>stddev</parameter>,<parameter>cumulative</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: </para>
+        <para><parameter>mean</parameter>: mean of the distribution</para>
+        <para><parameter>stddev</parameter>: standard deviation of the distribution</para>
+        <para><parameter>cumulative</parameter>: whether to evaluate the density function or the cumulative distribution function</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>stddev</parameter> is 0 this function returns a #DIV/0! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-POISSON"><function>POISSON</function></link>.
@@ -11067,6 +13443,20 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>NORMINV</function>(<parameter>p</parameter>,<parameter>mean</parameter>,<parameter>stddev</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>p</parameter>: probability</para>
+        <para><parameter>mean</parameter>: mean of the distribution</para>
+        <para><parameter>stddev</parameter>: standard deviation of the distribution</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 or <parameter>stddev</parameter> &lt;= 0 this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-NORMDIST"><function>NORMDIST</function></link>,
@@ -11107,6 +13497,18 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>NORMSINV</function>(<parameter>p</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>p</parameter>: given probability</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 this function returns #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-NORMDIST"><function>NORMDIST</function></link>,
@@ -11178,6 +13580,23 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>PERCENTILE</function>(<parameter>array</parameter>,<parameter>k</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>array</parameter>: data points</para>
+        <para><parameter>k</parameter>: which percentile to calculate</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>array</parameter> is empty, this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>k</parameter> &lt; 0 or <parameter>k</parameter> &gt; 1, this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-QUARTILE"><function>QUARTILE</function></link>.
@@ -11196,6 +13615,32 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>PERCENTRANK</function>(<parameter>array</parameter>,<parameter>x</parameter>,<parameter>significance</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>array</parameter>: range of numeric values</para>
+        <para><parameter>x</parameter>: data point to be ranked</para>
+        <para><parameter>significance</parameter>: number of significant digits, defaults to 3</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>array</parameter> contains no data points, this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>significance</parameter> is less than one, this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> exceeds the largest value or is less than the smallest value in <parameter>array</parameter>, this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> does not match any of the values in <parameter>array</parameter> or <parameter>x</parameter> matches more than once, this function interpolates the returned value.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-LARGE"><function>LARGE</function></link>,
@@ -11220,6 +13665,23 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>PERMUT</function>(<parameter>n</parameter>,<parameter>k</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>n</parameter>: size of the base set</para>
+        <para><parameter>k</parameter>: number of elements in each permutation</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>n</parameter> = 0 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>n</parameter> &lt; <parameter>k</parameter> this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-COMBIN"><function>COMBIN</function></link>.
@@ -11238,6 +13700,27 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>PERMUTATIONA</function>(<parameter>x</parameter>,<parameter>y</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: total number of objects</para>
+        <para><parameter>y</parameter>: number of selected objects</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If both <parameter>x</parameter> and <parameter>y</parameter> equal 0, <function>PERMUTATIONA</function> returns 1.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> &lt; 0 or <parameter>y</parameter> &lt; 0, <function>PERMUTATIONA</function> returns #NUM!</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> or <parameter>y</parameter> are not integers, they are truncated</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-POWER"><function>POWER</function></link>.
@@ -11256,6 +13739,28 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>POISSON</function>(<parameter>x</parameter>,<parameter>mean</parameter>,<parameter>cumulative</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: number of events</para>
+        <para><parameter>mean</parameter>: mean of the distribution</para>
+        <para><parameter>cumulative</parameter>: whether to evaluate the mass function or the cumulative distribution function</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> is a non-integer it is truncated.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> &lt; 0 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>mean</parameter> &lt;= 0 <function>POISSON</function> returns the #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-NORMDIST"><function>NORMDIST</function></link>,
@@ -11275,6 +13780,29 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>PROB</function>(<parameter>x_range</parameter>,<parameter>prob_range</parameter>,<parameter>lower_limit</parameter>,<parameter>upper_limit</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x_range</parameter>: possible values</para>
+        <para><parameter>prob_range</parameter>: probabilities of the corresponding values</para>
+        <para><parameter>lower_limit</parameter>: lower interval limit</para>
+        <para><parameter>upper_limit</parameter>: upper interval limit, defaults to <parameter>lower_limit</parameter></para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If the sum of the probabilities in <parameter>prob_range</parameter> is not equal to 1 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If any value in <parameter>prob_range</parameter> is &lt;=0 or &gt; 1, this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x_range</parameter> and <parameter>prob_range</parameter> contain a different number of data entries, this function returns a #N/A error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-BINOMDIST"><function>BINOMDIST</function></link>,
@@ -11294,6 +13822,27 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>QUARTILE</function>(<parameter>array</parameter>,<parameter>quart</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>array</parameter>: data points</para>
+        <para><parameter>quart</parameter>: A number from 0 to 4, indicating which quartile to calculate. A value of 0 causes the smallest value of <parameter>array</parameter> to be returned.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>array</parameter> is empty, this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>quart</parameter> &lt; 0 or <parameter>quart</parameter> &gt; 4, this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>quart</parameter> is not an integer, it is truncated.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-LARGE"><function>LARGE</function></link>,
@@ -12784,6 +15333,14 @@
         <para><parameter>number2</parameter>: second value</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>This is only meaningful if the underlying distribution really has a third moment.  The skewness of a symmetric (e.g., normal) distribution is zero.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If less than three numbers are given, this function returns a #DIV/0! error.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-AVERAGE"><function>AVERAGE</function></link>,
         <link linkend="gnumeric-VAR"><function>VAR</function></link>,
@@ -12814,6 +15371,10 @@
         <para><parameter>number2</parameter>: second value</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If less than two numbers are given, <function>SKEWP</function> returns a #DIV/0! error.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-AVERAGE"><function>AVERAGE</function></link>,
         <link linkend="gnumeric-VARP"><function>VARP</function></link>,
@@ -12834,6 +15395,23 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>SLOPE</function>(<parameter>known_y</parameter>'s,<parameter>known_x</parameter>'s)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para>@{known_y's}: known y-values</para>
+        <para>@{known_x's}: known x-values</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>known_x</parameter> or <parameter>known_y</parameter> contains no data entries or different number of data entries, this function returns a #N/A error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If the variance of the <parameter>known_x</parameter> is zero, this function returns #DIV/0 error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-STDEV"><function>STDEV</function></link>,
@@ -12853,6 +15431,23 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>SMALL</function>(<parameter>data</parameter>,<parameter>k</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>data</parameter>: data set</para>
+        <para><parameter>k</parameter>: which value to find</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If data set is empty this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>k</parameter> &lt;= 0 or <parameter>k</parameter> is greater than the number of data items given this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PERCENTILE"><function>PERCENTILE</function></link>,
@@ -12884,6 +15479,14 @@
         <para><parameter>interval</parameter>: length of each grouping interval, defaults to 1</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>array</parameter> is empty, this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>interval</parameter> &lt;= 0, this function returns a #NUM! error.<function>SSMEDIAN</function> does not check whether the data points are at least <parameter>interval</parameter> apart.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-MEDIAN"><function>MEDIAN</function></link>.
       </para>
@@ -12901,6 +15504,20 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>STANDARDIZE</function>(<parameter>x</parameter>,<parameter>mean</parameter>,<parameter>stddev</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>x</parameter>: value</para>
+        <para><parameter>mean</parameter>: mean of the original distribution</para>
+        <para><parameter>stddev</parameter>: standard deviation of the original distribution</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>stddev</parameter> is 0 this function returns a #DIV/0! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-AVERAGE"><function>AVERAGE</function></link>.
@@ -12928,14 +15545,9 @@
         <para><parameter>area1</parameter>: first cell area</para>
         <para><parameter>area2</parameter>: second cell area</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>STDEV</function>(<parameter>area1</parameter>,<parameter>area2</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>To obtain the population standard deviation of a whole population use STDEVP.</para>
-        <para><parameter>area1</parameter>: first cell area</para>
-        <para><parameter>area2</parameter>: second cell area</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -12969,23 +15581,13 @@
         <para><parameter>area1</parameter>: first cell area</para>
         <para><parameter>area2</parameter>: second cell area</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>STDEVA</function>(<parameter>area1</parameter>,<parameter>area2</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>To obtain the population standard deviation of a whole population use STDEVPA.</para>
-        <para><parameter>area1</parameter>: first cell area</para>
-        <para><parameter>area2</parameter>: second cell area</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>STDEVA</function>(<parameter>area1</parameter>,<parameter>area2</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>Numbers, text and logical values are included in the calculation too. If the cell contains text or the argument evaluates to FALSE, it is counted as value zero (0). If the argument evaluates to TRUE, it is counted as one (1). Note that empty cells are not counted.</para>
-        <para><parameter>area1</parameter>: first cell area</para>
-        <para><parameter>area2</parameter>: second cell area</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -13044,14 +15646,9 @@
         <para><parameter>area1</parameter>: first cell area</para>
         <para><parameter>area2</parameter>: second cell area</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>STDEVPA</function>(<parameter>area1</parameter>,<parameter>area2</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>Numbers, text and logical values are included in the calculation too. If the cell contains text or the argument evaluates to FALSE, it is counted as value zero (0). If the argument evaluates to TRUE, it is counted as one (1). Note that empty cells are not counted.</para>
-        <para><parameter>area1</parameter>: first cell area</para>
-        <para><parameter>area2</parameter>: second cell area</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -13072,6 +15669,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>STEYX</function>(<parameter>known_y</parameter>'s,<parameter>known_x</parameter>'s)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para>@{known_y's}: known y-values</para>
+        <para>@{known_x's}: known x-values</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>known_y</parameter>'s and <parameter>known_x</parameter>'s are empty or have a different number of arguments then this function returns a #N/A error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-PEARSON"><function>PEARSON</function></link>,
@@ -13121,15 +15731,21 @@
         <para><parameter>dof</parameter>: number of degrees of freedom</para>
         <para><parameter>tails</parameter>: 1 or 2. If this is 2, <parameter>x</parameter> is replaced by the absolute value and the returned value is multiplied by 2</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>TDIST</function>(<parameter>x</parameter>,<parameter>dof</parameter>,<parameter>tails</parameter>))</synopsis>
-      </refsynopsisdiv>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>dof</parameter> &lt; 1 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>tails</parameter> is neither 1 or 2 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>The parameterization of this function is different from what is used for, e.g., NORMSDIST.  This is a common source of mistakes, but necessary for compatibility.</para>
+      </refsect1>
       <refsect1>
         <title>Description</title>
         <para>This function is Excel compatible for non-negative <parameter>x</parameter>.</para>
-        <para><parameter>x</parameter>: </para>
-        <para><parameter>dof</parameter>: number of degrees of freedom</para>
-        <para><parameter>tails</parameter>: 1 or 2. If this is 2, <parameter>x</parameter> is replaced by the absolute value and the returned value is multiplied by 2</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -13160,6 +15776,14 @@
         <para><parameter>dof</parameter>: number of degrees of freedom</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 or <parameter>dof</parameter> &lt; 1 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>The parameterization of this function is different from what is used for, e.g., NORMSINV.  This is a common source of mistakes, but necessary for compatibility.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-TDIST"><function>TDIST</function></link>,
         <link linkend="gnumeric-TTEST"><function>TTEST</function></link>.
@@ -13178,6 +15802,21 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>TREND</function>(<parameter>known_y</parameter>'s,<parameter>known_x</parameter>'s,<parameter>new_x</parameter>'s,<parameter>const</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para>@{known_y's}: known y-values</para>
+        <para>@{known_x's}: known x-values; if <parameter>known_x</parameter>'s is omitted, an array {1, 2, 3, ...} is used.</para>
+        <para>@{new_x's}:  x-values for which you want to estimate the y-values; defaults to <parameter>known_x</parameter>'s</para>
+        <para><parameter>const</parameter>: if this is false the line will be forced to go through the origin; defaults to TRUE</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If @{known_y's} and @{known_x's} have unequal number of data points, this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-LINEST"><function>LINEST</function></link>.
@@ -13227,6 +15866,33 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>TTEST</function>(<parameter>array1</parameter>,<parameter>array2</parameter>,<parameter>tails</parameter>,<parameter>type</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>array1</parameter>: sample from the first population</para>
+        <para><parameter>array2</parameter>: sample from the second population</para>
+        <para><parameter>tails</parameter>: number of tails to consider</para>
+        <para><parameter>type</parameter>: Type of test to perform. 1 indicates a test for paired variables, 2 a test of unpaired variables with equal variances, and 3 a test of unpaired variables with unequal variances</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If the data sets contain a different number of data points and the test is paired (<parameter>type</parameter> one), <function>TTEST</function> returns the #N/A error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para><parameter>tails</parameter> and <parameter>type</parameter> are truncated to integers.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>tails</parameter> is not one or two, this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>type</parameter> is any other than one, two, or three, this function returns a #NUM! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-FDIST"><function>FDIST</function></link>,
@@ -13283,23 +15949,13 @@
         <para><parameter>area1</parameter>: first cell area</para>
         <para><parameter>area2</parameter>: second cell area</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>VARA</function>(<parameter>area1</parameter>,<parameter>area2</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>To get the true variance of a complete population use VARPA.</para>
-        <para><parameter>area1</parameter>: first cell area</para>
-        <para><parameter>area2</parameter>: second cell area</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>VARA</function>(<parameter>area1</parameter>,<parameter>area2</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>Numbers, text and logical values are included in the calculation too. If the cell contains text or the argument evaluates to FALSE, it is counted as value zero (0). If the argument evaluates to TRUE, it is counted as one (1). Note that empty cells are not counted.</para>
-        <para><parameter>area1</parameter>: first cell area</para>
-        <para><parameter>area2</parameter>: second cell area</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -13360,14 +16016,9 @@
         <para><parameter>area1</parameter>: first cell area</para>
         <para><parameter>area2</parameter>: second cell area</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>VARPA</function>(<parameter>area1</parameter>,<parameter>area2</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>Numbers, text and logical values are included in the calculation too. If the cell contains text or the argument evaluates to FALSE, it is counted as value zero (0). If the argument evaluates to TRUE, it is counted as one (1). Note that empty cells are not counted.</para>
-        <para><parameter>area1</parameter>: first cell area</para>
-        <para><parameter>area2</parameter>: second cell area</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -13400,6 +16051,14 @@
         <para><parameter>cumulative</parameter>: whether to evaluate the density function or the cumulative distribution function</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> &lt; 0 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>alpha</parameter> &lt;= 0 or <parameter>beta</parameter> &lt;= 0 this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-POISSON"><function>POISSON</function></link>.
       </para>
@@ -13417,6 +16076,20 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>ZTEST</function>(<parameter>ref</parameter>,<parameter>x</parameter>,<parameter>stddev</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>ref</parameter>: data set</para>
+        <para><parameter>x</parameter>: mean as given in the null hypothesis</para>
+        <para><parameter>stddev</parameter>: population stadard deviation, defaults to the sample standard deviation</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>ref</parameter> contains less than two data items <function>ZTEST</function> returns #DIV/0! error.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-CONFIDENCE"><function>CONFIDENCE</function></link>,
@@ -13451,13 +16124,13 @@
         <para><function>ASC</function> converts full-width katakana and ASCII characters to half-width equivalent characters, copying all others. </para>
         <para><parameter>text</parameter>: string</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>ASC</function>(<parameter>text</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>The distinction between half-width and full-width characters is described in http://www.unicode.org/reports/tr11/.</para>
-        <para><parameter>text</parameter>: string</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>While in obsolete encodings <function>ASC</function> used to translate between 2-byte and 1-byte characters, this is not the case in UTF-8.</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -13485,37 +16158,29 @@
         <para><function>CHAR</function>(<parameter>x</parameter>) returns the CP1252 (Windows-1252) character with code <parameter>x</parameter>.</para>
         <para><parameter>x</parameter>: code point</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>CHAR</function>(<parameter>x</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para><parameter>x</parameter> must be in the range 1 to 255.</para>
-        <para><parameter>x</parameter>: code point</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>CHAR</function>(<parameter>x</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>CP1252 (Windows-1252) is also known as the "ANSI code page", but it is not an ANSI standard.</para>
-        <para><parameter>x</parameter>: code point</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>CHAR</function>(<parameter>x</parameter>))))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>CP1252 (Windows-1252) is based on an early draft of ISO-8859-1, and contains all of its printable characters (but partially at different positions.)</para>
-        <para><parameter>x</parameter>: code point</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>CHAR</function>(<parameter>x</parameter>)))))</synopsis>
-      </refsynopsisdiv>
+      <refsect1>
+        <title>Note</title>
+        <para>In CP1252 (Windows-1252), 129, 141, 143, 144, and 157 do not have matching characters.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>For <parameter>x</parameter> from 1 to 255 except 129, 141, 143, 144, and 157 we have CODE(<function>CHAR</function>(<parameter>x</parameter>))=<parameter>x</parameter>.</para>
+      </refsect1>
       <refsect1>
         <title>Description</title>
         <para>This function is Excel compatible.</para>
-        <para><parameter>x</parameter>: code point</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -13535,6 +16200,14 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>CLEAN</function>(<parameter>text</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para><function>CLEAN</function> removes non-printable characters from its argument leaving only regular characters and white-space.</para>
+        <para><parameter>text</parameter>: string</para>
+      </refsect1>
     </refentry>
     <refentry id="gnumeric-CODE">
       <refmeta>
@@ -13556,29 +16229,25 @@
         <para><parameter>c</parameter> must be a valid CP1252 (Windows-1252) character.</para>
         <para><parameter>c</parameter>: character</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>CODE</function>(<parameter>c</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>CP1252 (Windows-1252) is also known as the "ANSI code page", but it is not an ANSI standard.</para>
-        <para><parameter>c</parameter>: character</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>CODE</function>(<parameter>c</parameter>)))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>CP1252 (Windows-1252) is based on an early draft of ISO-8859-1, and contains all of its printable characters (but partially at different positions.)</para>
-        <para><parameter>c</parameter>: character</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>CODE</function>(<parameter>c</parameter>))))</synopsis>
-      </refsynopsisdiv>
+      <refsect1>
+        <title>Note</title>
+        <para>In CP1252 (Windows-1252), 129, 141, 143, 144, and 157 do not have matching characters.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>For <parameter>x</parameter> from 1 to 255 except 129, 141, 143, 144, and 157 we have <function>CODE</function>(CHAR(<parameter>x</parameter>))=<parameter>x</parameter>.</para>
+      </refsect1>
       <refsect1>
         <title>Description</title>
         <para>This function is Excel compatible.</para>
-        <para><parameter>c</parameter>: character</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -13658,6 +16327,20 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>FIND</function>(<parameter>string1</parameter>,<parameter>string2</parameter>,<parameter>start</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>string1</parameter>: search string</para>
+        <para><parameter>string2</parameter>: search field</para>
+        <para><parameter>start</parameter>: starting position, defaults to 1</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>This search is case-sensitive.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-EXACT"><function>EXACT</function></link>,
@@ -13679,6 +16362,20 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>FINDB</function>(<parameter>string1</parameter>,<parameter>string2</parameter>,<parameter>start</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>string1</parameter>: search string</para>
+        <para><parameter>string2</parameter>: search field</para>
+        <para><parameter>start</parameter>: starting byte position, defaults to 1</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>This search is case-sensitive.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-FIND"><function>FIND</function></link>,
@@ -13732,13 +16429,13 @@
         <para><function>JIS</function> converts half-width katakana and ASCII characters to full-width equivalent characters, copying all others. </para>
         <para><parameter>text</parameter>: original text</para>
       </refsect1>
-      <refsynopsisdiv>
-        <synopsis><function>JIS</function>(<parameter>text</parameter>))</synopsis>
-      </refsynopsisdiv>
       <refsect1>
         <title>Description</title>
         <para>The distinction between half-width and full-width characters is described in http://www.unicode.org/reports/tr11/.</para>
-        <para><parameter>text</parameter>: original text</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>While in obsolete encodings <function>JIS</function> used to translate between 1-byte and 2-byte characters, this is not the case in UTF-8.</para>
       </refsect1>
       <refsect1>
         <title>See also</title>
@@ -13758,6 +16455,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>LEFT</function>(<parameter>s</parameter>,<parameter>num_chars</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>s</parameter>: the string</para>
+        <para><parameter>num_chars</parameter>: the number of characters to return (defaults to 1)</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If the string <parameter>s</parameter> is in a right-to-left script, the returned first characters are from the right of the string.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-MID"><function>MID</function></link>,
@@ -13781,6 +16491,23 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>LEFTB</function>(<parameter>s</parameter>,<parameter>num_bytes</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>s</parameter>: the string</para>
+        <para><parameter>num_bytes</parameter>: the maximum number of bytes to return (defaults to 1)</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>The semantics of this function is subject to change as various applications implement it.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If the string is in a right-to-left script, the returned first characters are from the right of the string.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-MIDB"><function>MIDB</function></link>,
@@ -13887,6 +16614,20 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>MIDB</function>(<parameter>s</parameter>,<parameter>start_pos</parameter>,<parameter>num_bytes</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>s</parameter>: the string</para>
+        <para><parameter>start_pos</parameter>: the number of the byte with which to start (defaults to 1)</para>
+        <para><parameter>num_bytes</parameter>: the maximum number of bytes to return (defaults to 1)</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>The semantics of this function is subject to change as various applications implement it.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-LEFTB"><function>LEFTB</function></link>,
@@ -13963,6 +16704,10 @@
         <para><parameter>new</parameter>: replacement string</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>The semantics of this function is subject to change as various applications implement it.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-MID"><function>MID</function></link>,
         <link linkend="gnumeric-SEARCH"><function>SEARCH</function></link>,
@@ -14001,6 +16746,19 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>RIGHT</function>(<parameter>s</parameter>,<parameter>num_chars</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>s</parameter>: the string</para>
+        <para><parameter>num_chars</parameter>: the number of characters to return (defaults to 1)</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If the string <parameter>s</parameter> is in a right-to-left script, the returned last characters are from the left of the string.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-LEFT"><function>LEFT</function></link>,
@@ -14025,6 +16783,23 @@
         </refname>
         <refpurpose/>
       </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>RIGHTB</function>(<parameter>s</parameter>,<parameter>num_bytes</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>.</para>
+        <para><parameter>s</parameter>: the string</para>
+        <para><parameter>num_bytes</parameter>: the maximum number of bytes to return (defaults to 1)</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>The semantics of this function is subject to change as various applications implement it.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If the string <parameter>s</parameter> is in a right-to-left script, the returned last characters are from the left of the string.</para>
+      </refsect1>
       <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-LEFTB"><function>LEFTB</function></link>,
@@ -14060,6 +16835,18 @@
         <para><parameter>start</parameter>: starting position, defaults to 1</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>This search is not case sensitive.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>search</parameter> is not found, <function>SEARCH</function> returns #VALUE!</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>start</parameter> is less than one or it is greater than the length of <parameter>text</parameter>, <function>SEARCH</function> returns #VALUE!</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-FIND"><function>FIND</function></link>,
         <link linkend="gnumeric-SEARCHB"><function>SEARCHB</function></link>.
@@ -14089,6 +16876,22 @@
         <para><parameter>start</parameter>: starting byte position, defaults to 1</para>
       </refsect1>
       <refsect1>
+        <title>Note</title>
+        <para>This search is not case sensitive.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>search</parameter> is not found, SEARCH returns #VALUE!</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>start</parameter> is less than one or it is greater than the byte length of <parameter>text</parameter>, SEARCH returns #VALUE!</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>The semantics of this function is subject to change as various applications implement it.</para>
+      </refsect1>
+      <refsect1>
         <title>See also</title>
         <para><link linkend="gnumeric-FINDB"><function>FINDB</function></link>,
         <link linkend="gnumeric-SEARCH"><function>SEARCH</function></link>.
@@ -14254,4 +17057,148 @@
       </refsect1>
     </refentry>
   </sect1>
+  <sect1 id="CATEGORY_Time_Series_Analysis">
+    <title>Time Series Analysis</title>
+    <refentry id="gnumeric-FOURIER">
+      <refmeta>
+        <refentrytitle>
+          <function>FOURIER</function>
+        </refentrytitle>
+      </refmeta>
+      <refnamediv>
+        <refname>
+          <function>FOURIER</function>
+        </refname>
+        <refpurpose/>
+      </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>FOURIER</function>(<parameter>Sequence</parameter>,<parameter>Inverse</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>This array function returns the Fourier or inverse Fourier transform of the given data sequence.</para>
+        <para><parameter>Sequence</parameter>:  the data sequence to be transformed</para>
+        <para><parameter>Inverse</parameter>: if false, the inverse Fourier transform is calculated. Defaults to false</para>
+      </refsect1>
+      <refsect1>
+        <title>Description</title>
+        <para>The output consists always of one column of complex numbers.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>Sequence</parameter> is neither an n by 1 nor 1 by n array, this function returns #NUM!</para>
+      </refsect1>
+    </refentry>
+    <refentry id="gnumeric-Interpolation">
+      <refmeta>
+        <refentrytitle>
+          <function>Interpolation</function>
+        </refentrytitle>
+      </refmeta>
+      <refnamediv>
+        <refname>
+          <function>Interpolation</function>
+        </refname>
+        <refpurpose/>
+      </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>Interpolation</function>(<parameter>abscissas</parameter>,<parameter>ordinates</parameter>,<parameter>targets</parameter>,<parameter>interpolation</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>If an interpolation method is used, the number of returned values is one less than the number of targets and the targets values must be given in increasing order.</para>
+        <para><parameter>abscissas</parameter>: The abscissas of the data to interpolate.</para>
+        <para><parameter>ordinates</parameter>: The ordinates of the data to interpolate.</para>
+        <para><parameter>targets</parameter>: The abscissas of the interpolated data.</para>
+        <para><parameter>interpolation</parameter>: The method of interpolation to be used, defaults to no interpolation</para>
+      </refsect1>
+      <refsect1>
+        <title>Description</title>
+        <para>The output consists always of one column of numbers.</para>
+      </refsect1>
+      <refsect1>
+        <title>Description</title>
+        <para>Possible interpolation methods are:</para>
+        <para>0: linear;</para>
+        <para>1: linear with averaging;</para>
+        <para>2: staircase;</para>
+        <para>3: staircase with averaging;</para>
+        <para>4: natural cubic spline;</para>
+        <para>5: natural cubic spline with averaging.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>Strings and empty cells in <parameter>abscissas</parameter> and <parameter>ordinates</parameter> are ignored.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If several target data are provided they must be in the same column in consecutive cells.</para>
+      </refsect1>
+      <refsect1>
+        <title>See also</title>
+        <para><link linkend="gnumeric-PERIODOGRAM"><function>PERIODOGRAM</function></link>.
+      </para>
+      </refsect1>
+    </refentry>
+    <refentry id="gnumeric-PERIODOGRAM">
+      <refmeta>
+        <refentrytitle>
+          <function>PERIODOGRAM</function>
+        </refentrytitle>
+      </refmeta>
+      <refnamediv>
+        <refname>
+          <function>PERIODOGRAM</function>
+        </refname>
+        <refpurpose/>
+      </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>PERIODOGRAM</function>(<parameter>ordinates</parameter>,<parameter>filter</parameter>,<parameter>abscissas</parameter>,<parameter>interpolation</parameter>,<parameter>number</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Description</title>
+        <para>If an interpolation method is used, the number of returned values is one less than the number of targets and the targets values must be given in increasing order.</para>
+        <para><parameter>ordinates</parameter>: The ordinates of the data to interpolate.</para>
+        <para><parameter>filter</parameter>: Window function to  be used, defaults to no window function.</para>
+        <para><parameter>abscissas</parameter>: The abscissas of the data to interpolate, defaults to regularly spaced abscissa.</para>
+        <para><parameter>interpolation</parameter>: The method of interpolation to be used, defaults to no interpolation</para>
+        <para><parameter>number</parameter>:  Number of interpolated data points to be used.</para>
+      </refsect1>
+      <refsect1>
+        <title>Description</title>
+        <para>The output consists always of one column of numbers.</para>
+      </refsect1>
+      <refsect1>
+        <title>Description</title>
+        <para>Possible interpolation methods are:</para>
+        <para>0: linear;</para>
+        <para>1: linear with averaging;</para>
+        <para>2: staircase;</para>
+        <para>3: staircase with averaging;</para>
+        <para>4: natural cubic spline;</para>
+        <para>5: natural cubic spline with averaging.</para>
+      </refsect1>
+      <refsect1>
+        <title>Description</title>
+        <para>Possible window functions are:</para>
+        <para>0: no filter (rectangular window)</para>
+        <para>1: Bartlett (triangular window)</para>
+        <para>2: Hahn (cosine window)</para>
+        <para>3: Welch (parabolic window)</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>Strings and empty cells in <parameter>abscissas</parameter> and <parameter>ordinates</parameter> are ignored.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If several target data are provided they must be in the same column in consecutive cells.</para>
+      </refsect1>
+      <refsect1>
+        <title>See also</title>
+        <para><link linkend="gnumeric-INTERPOLATION"><function>INTERPOLATION</function></link>.
+      </para>
+      </refsect1>
+    </refentry>
+  </sect1>
 </appendix>
diff --git a/doc/make-func-list.pl b/doc/make-func-list.pl
index 201a49f..0d6603f 100644
--- a/doc/make-func-list.pl
+++ b/doc/make-func-list.pl
@@ -139,6 +139,17 @@ sub process_description($) {
 	print $ws, "</refsect1>\n";
 }
 
+sub process_note($) {
+	my ($text) = @_;
+	my $ws = "  " x scalar(@tagstack);
+	print $ws, "<refsect1>\n";
+	print $ws, "  <title>Note</title>\n";
+	foreach my $l (split(/\n/, $text)) {
+		print $ws,"    <para>", &markup_stuff($l), "</para>\n";
+	}
+	print $ws, "</refsect1>\n";
+}
+
 sub process_syntax($) {
 	my ($str) = @_;
 	my $ws = "  " x scalar(@tagstack);
@@ -188,7 +199,7 @@ my %processor = (
 	'DESCRIPTION'	=> \&process_description,
 	'SEEALSO'	=> \&process_seealso,
 
-	'NOTE'		=> \&processnotimplemented,
+	'NOTE'		=> \&process_note,
 	'EXCEL'		=> \&processnotimplemented,
 	'ODF'		=> \&processnotimplemented,
 );
diff --git a/plugins/fn-complex/functions.c b/plugins/fn-complex/functions.c
index 49dddd4..76e3370 100644
--- a/plugins/fn-complex/functions.c
+++ b/plugins/fn-complex/functions.c
@@ -309,8 +309,8 @@ gnumeric_imtan (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 static GnmFuncHelp const help_imsec[] = {
         { GNM_FUNC_HELP_NAME, F_("IMSEC:the secant of the complex number @{z}") },
         { GNM_FUNC_HELP_ARG, F_("z:a complex number") },
-	{ GNM_FUNC_HELP_NOTE, F_("If @{z} is not a valid complex number, #VALUE! is returned.") },
         { GNM_FUNC_HELP_DESCRIPTION, F_("secz = 1/cosz.") },
+	{ GNM_FUNC_HELP_NOTE, F_("If @{z} is not a valid complex number, #VALUE! is returned.") },
         { GNM_FUNC_HELP_EXAMPLES, "=IMSEC(\"2-j\")" },
         { GNM_FUNC_HELP_SEEALSO, "IMCSC,IMCOT" },
         { GNM_FUNC_HELP_END}
@@ -362,8 +362,8 @@ gnumeric_imcsc (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 static GnmFuncHelp const help_imcot[] = {
         { GNM_FUNC_HELP_NAME, F_("IMCOT:the cotangent of the complex number @{z}") },
         { GNM_FUNC_HELP_ARG, F_("z:a complex number") },
-	{ GNM_FUNC_HELP_NOTE, F_("If @{z} is not a valid complex number, #VALUE! is returned.") },
         { GNM_FUNC_HELP_DESCRIPTION, F_("cotz = cosz/sinz.") },
+	{ GNM_FUNC_HELP_NOTE, F_("If @{z} is not a valid complex number, #VALUE! is returned.") },
         { GNM_FUNC_HELP_EXAMPLES, "=IMCOT(\"2-j\")" },
         { GNM_FUNC_HELP_SEEALSO, "IMSEC,IMCSC" },
         { GNM_FUNC_HELP_END}
diff --git a/plugins/fn-derivatives/options.c b/plugins/fn-derivatives/options.c
index 0529606..5dece45 100644
--- a/plugins/fn-derivatives/options.c
+++ b/plugins/fn-derivatives/options.c
@@ -574,10 +574,8 @@ static GnmFuncHelp const help_opt_bs_carrycost[] = {
 					"on an asset with spot price @{spot}. The elasticity of an option "
 					"is the rate of change of its price "
 					"with respect to its @{cost_of_carry}.")},
-	{ GNM_FUNC_HELP_DESCRIPTION, F_("")},
 	{ GNM_FUNC_HELP_NOTE, F_("Elasticity is expressed as the rate of change "
 				 "of the option value, per 100% volatility.")},
-	{ GNM_FUNC_HELP_NOTE, F_("")},
         { GNM_FUNC_HELP_SEEALSO, "OPT_BS,OPT_BS_DELTA,OPT_BS_RHO,OPT_BS_THETA,OPT_BS_GAMMA"},
         { GNM_FUNC_HELP_END}
 };
diff --git a/plugins/fn-info/functions.c b/plugins/fn-info/functions.c
index c5316e3..0d58217 100644
--- a/plugins/fn-info/functions.c
+++ b/plugins/fn-info/functions.c
@@ -1536,6 +1536,7 @@ gnumeric_error (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 static GnmFuncHelp const help_isblank[] = {
         { GNM_FUNC_HELP_NAME, F_("ISBLANK:TRUE if @{value} is blank.")},
         { GNM_FUNC_HELP_ARG, F_("value:a value")},
+        { GNM_FUNC_HELP_DESCRIPTION, F_("This function checks if a value is blank.  Empty cells are blank, but empty strings are not.")},
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
         { GNM_FUNC_HELP_EXAMPLES, "=ISBLANK(\"\")" },
         { GNM_FUNC_HELP_END}
@@ -1573,6 +1574,7 @@ gnumeric_iseven (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 static GnmFuncHelp const help_islogical[] = {
         { GNM_FUNC_HELP_NAME, F_("ISLOGICAL:TRUE if @{value} is a logical value.")},
         { GNM_FUNC_HELP_ARG, F_("value:a value")},
+        { GNM_FUNC_HELP_DESCRIPTION, F_("This function checks if a value is either TRUE or FALSE.") },
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
         { GNM_FUNC_HELP_EXAMPLES, "=ISLOGICAL(1)" },
         { GNM_FUNC_HELP_EXAMPLES, "=ISLOGICAL(\"Gnumeric\")" },
@@ -1607,6 +1609,7 @@ gnumeric_isnontext (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 static GnmFuncHelp const help_isnumber[] = {
         { GNM_FUNC_HELP_NAME, F_("ISNUMBER:TRUE if @{value} is a number.")},
         { GNM_FUNC_HELP_ARG, F_("value:a value")},
+        { GNM_FUNC_HELP_DESCRIPTION, F_("This function checks if a value is a number.  Neither TRUE nor FALSE are numbers for this purpose.") },
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
         { GNM_FUNC_HELP_EXAMPLES, "=ISNUMBER(\"Gnumeric\")" },
         { GNM_FUNC_HELP_EXAMPLES, "=ISNUMBER(PI())" },
@@ -1645,6 +1648,7 @@ gnumeric_isodd (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 static GnmFuncHelp const help_isref[] = {
         { GNM_FUNC_HELP_NAME, F_("ISREF:TRUE if @{value} is a reference.")},
         { GNM_FUNC_HELP_ARG, F_("value:a value")},
+        { GNM_FUNC_HELP_DESCRIPTION, F_("This function checks if a value is a cell reference.") },
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
         { GNM_FUNC_HELP_EXAMPLES, "=ISREF(A1)" },
         { GNM_FUNC_HELP_END}
diff --git a/plugins/fn-math/functions.c b/plugins/fn-math/functions.c
index 05eed20..91cb4db 100644
--- a/plugins/fn-math/functions.c
+++ b/plugins/fn-math/functions.c
@@ -786,12 +786,12 @@ gnumeric_ceiling (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 static GnmFuncHelp const help_cos[] = {
 	{ GNM_FUNC_HELP_NAME, F_("COS:Cosine function")},
 	{ GNM_FUNC_HELP_ARG, F_("x:angle in radians")},
-	{ GNM_FUNC_HELP_SEEALSO, "SIN,TAN,SINH,COSH,TANH,RADIANS,DEGREES" },
-	{ GNM_FUNC_HELP_EXAMPLES, "=COS(0.5)" },
-	{ GNM_FUNC_HELP_EXAMPLES, "=COS(1)" },
 	{ GNM_FUNC_HELP_DESCRIPTION, F_("This function is Excel compatible.") },
 	{ GNM_FUNC_HELP_EXTREF, F_("wolfram:Cosine.html") },
 	{ GNM_FUNC_HELP_EXTREF, F_("wiki:en:Trigonometric_functions") },
+	{ GNM_FUNC_HELP_EXAMPLES, "=COS(0.5)" },
+	{ GNM_FUNC_HELP_EXAMPLES, "=COS(1)" },
+	{ GNM_FUNC_HELP_SEEALSO, "SIN,TAN,SINH,COSH,TANH,RADIANS,DEGREES" },
 	{ GNM_FUNC_HELP_END }
 };
 
@@ -912,8 +912,9 @@ gnumeric_expm1 (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 
 static GnmFuncHelp const help_fact[] = {
         { GNM_FUNC_HELP_NAME, F_("FACT:the factorial of @{x}, i.e. @{x}!")},
-        { GNM_FUNC_HELP_ARG, F_("x:non-negative integer")},
+        { GNM_FUNC_HELP_ARG, F_("x:number")},
  	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
+	{ GNM_FUNC_HELP_NOTE, F_("The domain of this function has been extended using the GAMMA function.") },
 	{ GNM_FUNC_HELP_EXAMPLES, "=FACT(3)" },
         { GNM_FUNC_HELP_EXAMPLES, "=FACT(9)" },
         { GNM_FUNC_HELP_END}
@@ -1085,6 +1086,7 @@ static GnmFuncHelp const help_combina[] = {
         { GNM_FUNC_HELP_EXAMPLES, "=COMBINA(6,3)" },
         { GNM_FUNC_HELP_EXAMPLES, "=COMBINA(42,3)" },
 	{ GNM_FUNC_HELP_EXTREF, F_("wiki:en:Multiset") },
+	{ GNM_FUNC_HELP_SEEALSO, "COMBIN" },
         { GNM_FUNC_HELP_END}
 };
 
@@ -1764,7 +1766,7 @@ gnumeric_odd (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 
 static GnmFuncHelp const help_factdouble[] = {
         { GNM_FUNC_HELP_NAME, F_("FACTDOUBLE:double factorial")},
-        { GNM_FUNC_HELP_ARG, F_("area0:first cell areax:non-negative integer")},
+        { GNM_FUNC_HELP_ARG, F_("x:non-negative integer")},
         { GNM_FUNC_HELP_DESCRIPTION, F_("FACTDOUBLE function returns the double factorial @{x}!!")},
 	{ GNM_FUNC_HELP_NOTE, F_("If @{x} is not an integer, it is truncated. If @{x} is negative, FACTDOUBLE returns #NUM!") },
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
diff --git a/plugins/fn-stat/functions.c b/plugins/fn-stat/functions.c
index 7052e40..7203dba 100644
--- a/plugins/fn-stat/functions.c
+++ b/plugins/fn-stat/functions.c
@@ -4436,6 +4436,7 @@ static GnmFuncHelp const help_cronbach[] = {
 	{ GNM_FUNC_HELP_NAME, F_("CRONBACH:Cronbach's alpha")},
 	{ GNM_FUNC_HELP_ARG, F_("ref1:first data set")},
 	{ GNM_FUNC_HELP_ARG, F_("ref2:second data set")},
+	{ GNM_FUNC_HELP_SEEALSO, "VAR" },
 	{ GNM_FUNC_HELP_END }
 };
 
diff --git a/plugins/fn-string/functions.c b/plugins/fn-string/functions.c
index 239770c..a7481cd 100644
--- a/plugins/fn-string/functions.c
+++ b/plugins/fn-string/functions.c
@@ -617,6 +617,7 @@ gnumeric_rept (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 static GnmFuncHelp const help_clean[] = {
         { GNM_FUNC_HELP_NAME, F_("CLEAN:@{text} with any non-printable characters removed")},
         { GNM_FUNC_HELP_ARG, F_("text:string")},
+	{ GNM_FUNC_HELP_DESCRIPTION, F_("CLEAN removes non-printable characters from its argument leaving only regular characters and white-space.") },
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
         { GNM_FUNC_HELP_EXAMPLES, "=CLEAN(\"Gnumeric\"&char(7))" },
         { GNM_FUNC_HELP_END}
diff --git a/src/func.c b/src/func.c
index 24afe78..a941325 100644
--- a/src/func.c
+++ b/src/func.c
@@ -315,6 +315,8 @@ function_dump_defs (char const *filename, int dump_type)
 			gboolean first_arg = TRUE;
 			GString *syntax = g_string_new ("@SYNTAX=");
 			GString *arg_desc = g_string_new (NULL);
+			gboolean seen_desc = FALSE;
+
 			fprintf (output_file, "@CATEGORY=%s\n",
 				 _(fd->fn_group->display_name->str));
 			for (i = 0;
@@ -337,11 +339,29 @@ function_dump_defs (char const *filename, int dump_type)
 						 _(fd->help[i].text));
 					break;
 				case GNM_FUNC_HELP_DESCRIPTION:
-					g_string_append_c (syntax, ')');
-					fprintf (output_file, "%s\n DESCRIPTION=%s\n%s",
-						 syntax->str,
-						 _(fd->help[i].text),
-						 arg_desc->str);
+					if (!seen_desc) {
+						g_string_append_c (syntax, ')');
+						fprintf (output_file, "%s\n",
+							 syntax->str);
+					}
+					fprintf (output_file, "@DESCRIPTION=%s\n",
+						 _(fd->help[i].text));
+					if (!seen_desc) {
+						fprintf (output_file, "%s\n",
+							 arg_desc->str);
+					}
+					seen_desc = TRUE;
+					break;
+				case GNM_FUNC_HELP_NOTE:
+					if (!seen_desc) {
+						g_string_append_c (syntax, ')');
+						fprintf (output_file, "%s\n DESCRIPTION= \n%s",
+							 syntax->str,
+							 arg_desc->str);
+						seen_desc = TRUE;
+					}
+					fprintf (output_file, "@NOTE=%s\n",
+						 _(fd->help[i].text));
 					break;
 				case GNM_FUNC_HELP_ARG: {
 					char *desc;
@@ -366,7 +386,6 @@ function_dump_defs (char const *filename, int dump_type)
 					/* FIXME! */
 				case GNM_FUNC_HELP_EXAMPLES:
 				case GNM_FUNC_HELP_END:
-				case GNM_FUNC_HELP_NOTE:
 				case GNM_FUNC_HELP_EXCEL:
 				case GNM_FUNC_HELP_ODF:
 					break;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]