diff options
| author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
|---|---|---|
| committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
| commit | 8362bf63dea22bbf6736609b0f49c152f975eb63 (patch) | |
| tree | 0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kspread/extensions/database.xml | |
| download | koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip | |
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kspread/extensions/database.xml')
| -rw-r--r-- | kspread/extensions/database.xml | 298 |
1 files changed, 298 insertions, 0 deletions
diff --git a/kspread/extensions/database.xml b/kspread/extensions/database.xml new file mode 100644 index 000000000..ee1c32e27 --- /dev/null +++ b/kspread/extensions/database.xml @@ -0,0 +1,298 @@ +<!DOCTYPE KSpreadFunctions> +<KSpreadFunctions> + + <Group> + <GroupName>Database</GroupName> + + <Function> + <Name>DSUM</Name> + <Type>FLOAT</Type> + <Parameter> + <Comment>Range marking the database</Comment> + <Type range="true">String</Type> + </Parameter> + <Parameter> + <Comment>String marking the column in the database</Comment> + <Type>String</Type> + </Parameter> + <Parameter> + <Comment>Range marking the conditions</Comment> + <Type range="true">String</Type> + </Parameter> + <Help> + <Text>Sums up the numbers in a column of a database specified by a set of conditions.</Text> + <Syntax>DSUM(Database; "Header"; Conditions)</Syntax> + <Example>DSUM(A1:C5; "Salary"; A9:A11)</Example> + </Help> + </Function> + + <Function> + <Name>DAVERAGE</Name> + <Type>FLOAT</Type> + <Parameter> + <Comment>Range marking the database</Comment> + <Type range="true">String</Type> + </Parameter> + <Parameter> + <Comment>String marking the column in the database</Comment> + <Type>String</Type> + </Parameter> + <Parameter> + <Comment>Range marking the conditions</Comment> + <Type range="true">String</Type> + </Parameter> + <Help> + <Text>Calculates the average in a column of a database specified by a set of conditions for values that are numbers</Text> + <Syntax>DAVERAGE(Database; "Header"; Conditions)</Syntax> + <Example>DAVERAGE(A1:C5; "Salary"; A9:A11)</Example> + </Help> + </Function> + + <Function> + <Name>DCOUNT</Name> + <Type>FLOAT</Type> + <Parameter> + <Comment>Range marking the database</Comment> + <Type range="true">String</Type> + </Parameter> + <Parameter> + <Comment>String marking the column in the database</Comment> + <Type>String</Type> + </Parameter> + <Parameter> + <Comment>Range marking the conditions</Comment> + <Type range="true">String</Type> + </Parameter> + <Help> + <Text>Counts the cells containing numeric values in a column of a database specified by a set of conditions.</Text> + <Syntax>DCOUNT(Database; "Header"; Conditions)</Syntax> + <Example>DCOUNT(A1:C5; "Salary"; A9:A11)</Example> + <Related>DCOUNTA</Related> + </Help> + </Function> + + <Function> + <Name>DCOUNTA</Name> + <Type>FLOAT</Type> + <Parameter> + <Comment>Range marking the database</Comment> + <Type range="true">String</Type> + </Parameter> + <Parameter> + <Comment>String marking the column in the database</Comment> + <Type>String</Type> + </Parameter> + <Parameter> + <Comment>Range marking the conditions</Comment> + <Type range="true">String</Type> + </Parameter> + <Help> + <Text>Counts the cells containing numeric or alphanumeric values in a column of a database specified by a set of conditions.</Text> + <Syntax>DCOUNTA(Database; "Header"; Conditions)</Syntax> + <Example>DCOUNTA(A1:C5; "Salary"; A9:A11)</Example> + <Related>DCOUNT</Related> + </Help> + </Function> + + <Function> + <Name>DGET</Name> + <Type>FLOAT</Type> + <Parameter> + <Comment>Range marking the database</Comment> + <Type range="true">String</Type> + </Parameter> + <Parameter> + <Comment>String marking the column in the database</Comment> + <Type>String</Type> + </Parameter> + <Parameter> + <Comment>Range marking the conditions</Comment> + <Type range="true">String</Type> + </Parameter> + <Help> + <Text>Returns a single value from a column of a database specified by a set of conditions. This function returns an error if no value or more than one value exist.</Text> + <Syntax>DGET(Database; "Header"; Conditions)</Syntax> + <Example>DGET(A1:C5; "Salary"; A9:A11)</Example> + </Help> + </Function> + + <Function> + <Name>DMAX</Name> + <Type>FLOAT</Type> + <Parameter> + <Comment>Range marking the database</Comment> + <Type range="true">String</Type> + </Parameter> + <Parameter> + <Comment>String marking the column in the database</Comment> + <Type>String</Type> + </Parameter> + <Parameter> + <Comment>Range marking the conditions</Comment> + <Type range="true">String</Type> + </Parameter> + <Help> + <Text>Returns the largest value in a column of a database specified by a set of conditions.</Text> + <Syntax>DMAX(Database; "Header"; Conditions)</Syntax> + <Example>DMAX(A1:C5; "Salary"; A9:A11)</Example> + <Related>DMIN</Related> + </Help> + </Function> + + <Function> + <Name>DMIN</Name> + <Type>FLOAT</Type> + <Parameter> + <Comment>Range marking the database</Comment> + <Type range="true">String</Type> + </Parameter> + <Parameter> + <Comment>String marking the column in the database</Comment> + <Type>String</Type> + </Parameter> + <Parameter> + <Comment>Range marking the conditions</Comment> + <Type range="true">String</Type> + </Parameter> + <Help> + <Text>Returns the smallest values in a column of a database specified by a set of conditions.</Text> + <Syntax>DMIN(Database; "Header"; Conditions)</Syntax> + <Example>DMIN(A1:C5; "Salary"; A9:A11)</Example> + <Related>DMAX</Related> + </Help> + </Function> + + <Function> + <Name>DPRODUCT</Name> + <Type>FLOAT</Type> + <Parameter> + <Comment>Range marking the database</Comment> + <Type range="true">String</Type> + </Parameter> + <Parameter> + <Comment>String marking the column in the database</Comment> + <Type>String</Type> + </Parameter> + <Parameter> + <Comment>Range marking the conditions</Comment> + <Type range="true">String</Type> + </Parameter> + <Help> + <Text>Returns the product of all numeric values in a column of a database specified by a set of conditions.</Text> + <Syntax>DPRODUCT(Database; "Header"; Conditions)</Syntax> + <Example>DPRODUCT(A1:C5; "Salary"; A9:A11)</Example> + </Help> + </Function> + + <Function> + <Name>DSTDEV</Name> + <Type>FLOAT</Type> + <Parameter> + <Comment>Range marking the database</Comment> + <Type range="true">String</Type> + </Parameter> + <Parameter> + <Comment>String marking the column in the database</Comment> + <Type>String</Type> + </Parameter> + <Parameter> + <Comment>Range marking the conditions</Comment> + <Type range="true">String</Type> + </Parameter> + <Help> + <Text>Returns the estimate of the standard deviation of a population based on a sample using all numeric values in a column of a database specified by a set of conditions.</Text> + <Syntax>DSTDEV(Database; "Header"; Conditions)</Syntax> + <Example>DSTDEV(A1:C5; "Salary"; A9:A11)</Example> + <Related>DSTDEVP</Related> + </Help> + </Function> + + <Function> + <Name>DSTDEVP</Name> + <Type>FLOAT</Type> + <Parameter> + <Comment>Range marking the database</Comment> + <Type range="true">String</Type> + </Parameter> + <Parameter> + <Comment>String marking the column in the database</Comment> + <Type>String</Type> + </Parameter> + <Parameter> + <Comment>Range marking the conditions</Comment> + <Type range="true">String</Type> + </Parameter> + <Help> + <Text>Returns the standard deviation of a population based on the entire population using all numeric values in a column of a database specified by a set of conditions.</Text> + <Syntax>DSTDEVP(Database; "Header"; Conditions)</Syntax> + <Example>DSTDEVP(A1:C5; "Salary"; A9:A11)</Example> + <Related>DSTDEV</Related> + </Help> + </Function> + + <Function> + <Name>DVAR</Name> + <Type>FLOAT</Type> + <Parameter> + <Comment>Range marking the database</Comment> + <Type range="true">String</Type> + </Parameter> + <Parameter> + <Comment>String marking the column in the database</Comment> + <Type>String</Type> + </Parameter> + <Parameter> + <Comment>Range marking the conditions</Comment> + <Type range="true">String</Type> + </Parameter> + <Help> + <Text>Returns the estimate of the variance of a population based on a sample using all numeric values in a column of a database specified by a set of conditions.</Text> + <Syntax>DVAR(Database; "Header"; Conditions)</Syntax> + <Example>DVAR(A1:C5; "Salary"; A9:A11)</Example> + <Related>DVARP</Related> + </Help> + </Function> + + <Function> + <Name>DVARP</Name> + <Type>FLOAT</Type> + <Parameter> + <Comment>Range marking the database</Comment> + <Type range="true">String</Type> + </Parameter> + <Parameter> + <Comment>String marking the column in the database</Comment> + <Type>String</Type> + </Parameter> + <Parameter> + <Comment>Range marking the conditions</Comment> + <Type range="true">String</Type> + </Parameter> + <Help> + <Text>Returns the variance of a population based on the entire population using all numeric values in a column of a database specified by a set of conditions.</Text> + <Syntax>DVARP(Database; "Header"; Conditions)</Syntax> + <Example>DVARP(A1:C5; "Salary"; A9:A11)</Example> + <Related>DVAR</Related> + </Help> + </Function> + + <Function> + <Name>GETPIVOTDATA</Name> + <Type>FLOAT</Type> + <Parameter> + <Type range="true">String</Type> + <Comment>Range containing the pivot table</Comment> + </Parameter> + <Parameter> + <Type>String</Type> + <Comment>Name of the field of which you want the summary data</Comment> + </Parameter> + <Help> + <Text>Fetches summary data from a pivot table.</Text> + <Syntax>GETPIVOTDATA(Database; "Sales")</Syntax> + </Help> + </Function> + + </Group> + +</KSpreadFunctions> |
