Database Functions/text/scalc/01/04060101.xhpFunction Wizard; databasesfunctions; database functionsdatabases; functions in $[officename] CalcDatabase FunctionsThis section deals with functions used with data organized as one row of data for one record.
The Database category may be confused with a database integrated in $[officename]. However, there is no connection between a database in $[officename] and the Database category in $[officename] Calc.Example Data:The following data will be used in some of the function description examples:The range A1:E10 lists the children invited to Joe's birthday party. The following information is given for each entry: column A shows the name, B the grade, then age in years, distance to school in meters and weight in kilograms.
ABCDE1NameGradeAgeDistance to SchoolWeight2Andy39150403Betty4101000424Charles310300515Daniel5111200486Eva28650337Frank27300428Greta17200369Harry3912004410Irene28100042111213NameGradeAgeDistance to SchoolWeight14>6001516DCOUNT5
The formula in cell B16 is =DCOUNT(A1:E10;0;A13:E14)Database Function Parameters:The following items are the parameter definitions for all database functions:Database is the cell range defining the database.DatabaseField specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. Use the number 0 to specify the whole data range. To reference a column by means of the column header name, place quotation marks around the header name.
SearchCriteria is the cell range containing search criteria. If you write several criteria in one row they are connected by AND. If you write the criteria in different rows they are connected by OR. Empty cells in the search criteria range will be ignored.Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate to define how $[officename] Calc acts when searching for identical entries.See also the Wiki page about Conditional Counting and Summation.DCOUNT functioncounting rows;with numeric valuesmw added "counting rows;"DCOUNTDCOUNT counts the number of rows (records) in a database that match the specified search criteria and contain numerical values.SyntaxDCOUNT(Database; DatabaseField; SearchCriteria)For the DatabaseField parameter you can enter a cell to specify the column, or enter the number 0 for the entire database. The parameter cannot be empty. ExampleIn the example above (scroll up, please), we want to know how many children have to travel more than 600 meters to school. The result is to be stored in cell B16. Set the cursor in cell B16. Enter the formula =DCOUNT(A1:E10;0;A13:E14) in B16. The Function Wizard helps you to input ranges.Database is the range of data to be evaluated, including its headers: in this case A1:E10. DatabaseField specifies the column for the search criteria: in this case, the whole database. SearchCriteria is the range where you can enter the search parameters: in this case, A13:E14.To learn how many children in second grade are over 7 years of age, delete the entry >600 in cell D14 and enter 2 in cell B14 under Grade, and enter >7 in cell C14 to the right. The result is 2. Two children are in second grade and over 7 years of age. As both criteria are in the same row, they are connected by AND.DCOUNTA functionrecords;counting in Calc databasescounting rows;with numeric or alphanumeric valuesmw added "records;" and "counting rows;"DCOUNTADCOUNTA counts the number of rows (records) in a database that match the specified search conditions, and contain numeric or alphanumeric values.SyntaxDCOUNTA(Database; DatabaseField; SearchCriteria)ExampleIn the example above (scroll up, please), you can search for the number of children whose name starts with an E or a subsequent letter. Edit the formula in B16 to read =DCOUNTA(A1:E10;"Name";A13:E14). Delete the old search criteria and enter >=E under Name in field A14. The result is 5. If you now delete all number values for Greta in row 8, the result changes to 4. Row 8 is no longer included in the count because it does not contain any values. The name Greta is text, not a value. Note that the DatabaseField parameter must point to a column that can contain values.see i25407DGET functioncell contents;searching in Calc databasessearching;cell contents in Calc databasesmw added "cell contents;" and "searching;"DGETDGET returns the contents of the referenced cell in a database which matches the specified search criteria. In case of an error, the function returns either #VALUE! for no row found, or Err502 for more than one cell found.SyntaxDGET(Database; DatabaseField; SearchCriteria)ExampleIn the above example (scroll up, please), we want to determine what grade a child is in, whose name was entered in cell A14. The formula is entered in cell B16 and differs slightly from the earlier examples because only one column (one database field) can be entered for DatabaseField. Enter the following formula:=DGET(A1:E10;"Grade";A13:E14)Enter the name Frank in A14, and you see the result 2. Frank is in second grade. Enter "Age" instead of "Grade" and you will get Frank's age.Or enter the value 11 in cell C14 only, and delete the other entries in this row. Edit the formula in B16 as follows:=DGET(A1:E10;"Name";A13:E14)Instead of the grade, the name is queried. The answer appears at once: Daniel is the only child aged 11.DMAX functionmaximum values in Calc databasessearching;maximum values in columnsmw added "maximum..." and "searching;"DMAXDMAX returns the maximum content of a cell (field) in a database (all records) that matches the specified search conditions.SyntaxDMAX(Database; DatabaseField; SearchCriteria)ExampleTo find out how much the heaviest child in each grade weighed in the above example (scroll up, please), enter the following formula in B16:=DMAX(A1:E10;"Weight";A13:E14)Under Grade, enter 1, 2, 3, and so on, one after the other. After entering a grade number, the weight of the heaviest child in that grade appears.DMIN functionminimum values in Calc databasessearching;minimum values in columnsmw added "minimum..." and "searching;"DMINDMIN returns the minimum content of a cell (field) in a database that matches the specified search criteria.SyntaxDMIN(Database; DatabaseField; SearchCriteria)ExampleTo find the shortest distance to school for the children in each grade in the above example (scroll up, please), enter the following formula in B16:=DMIN(A1:E10;"Distance to School";A13:E14)In row 14, under Grade, enter 1, 2, 3, and so on, one after the other. The shortest distance to school for each grade appears.DAVERAGE functionaverages; in Calc databasescalculating;averages in Calc databasesmw added "averages;..." and "calculating;"DAVERAGEDAVERAGE returns the average of the values of all cells (fields) in all rows (database records) that match the specified search criteria.SyntaxDAVERAGE(Database; DatabaseField; SearchCriteria)ExampleTo find the average weight of all children of the same age in the above example (scroll up, please), enter the following formula in B16:=DAVERAGE(A1:E10;"Weight";A13:E14)In row 14, under Age, enter 7, 8, 9, and so on, one after the other. The average weight of all children of the same age appears.DPRODUCT functionmultiplying;cell contents in Calc databasesmw added "multiplying..."DPRODUCTDPRODUCT multiplies all cells of a data range where the cell contents match the search criteria.SyntaxDPRODUCT(Database; DatabaseField; SearchCriteria)ExampleWith the birthday party example above (scroll up, please), there is no meaningful application of this function.DSTDEV functionstandard deviations in databases;based on a samplemw added "standard deviations...;"DSTDEVDSTDEV calculates the standard deviation of a population based on a sample, using the numbers in a database column that match the given conditions. The records are treated as a sample of data. That means that the children in the example represent a cross section of all children. Note that a representative result can not be obtained from a sample of less than one thousand.SyntaxDSTDEV(Database; DatabaseField; SearchCriteria)ExampleTo find the standard deviation of the weight for all children of the same age in the example (scroll up, please), enter the following formula in B16:=DSTDEV(A1:E10;"Weight";A13:E14)In row 14, under Age, enter 7, 8, 9, and so on, one after the other. The result shown is the standard deviation of the weight of all children of this age.DSTDEVP functionstandard deviations in databases;based on populationsmw added "standard deviations...;"DSTDEVPDSTDEVP calculates the standard deviation of a population based on all cells of a data range which match the search criteria. The records from the example are treated as the whole population.SyntaxDSTDEVP(Database; DatabaseField; SearchCriteria)ExampleTo find the standard deviation of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:=DSTDEVP(A1:E10;"Weight";A13:E14)In row 14, under Age, enter 7, 8, 9, and so on, one after the other. The result is the standard deviation of the weight for all same-aged children whose weight was checked.DSUM functioncalculating;sums in Calc databasessums;cells in Calc databasesmw added "calculating;" and "sums;"DSUMDSUM returns the total of all cells in a database field in all rows (records) that match the specified search criteria.SyntaxDSUM(Database; DatabaseField; SearchCriteria)ExampleTo find the length of the combined distance to school of all children at Joe's birthday party (scroll up, please) who are in second grade, enter the following formula in B16:=DSUM(A1:E10;"Distance to School";A13:E14)Enter 2 in row 14 under Grade. The sum (1950) of the distances to school of all the children who are in second grade is displayed.DVAR functionvariances;based on samplesmw added "variances;"DVARDVAR returns the variance of all cells of a database field in all records that match the specified search criteria. The records from the example are treated as a sample of data. A representative result cannot be obtained from a sample population of less than one thousand.SyntaxDVAR(Database; DatabaseField; SearchCriteria)ExampleTo find the variance of the weight of all children of the same age of the above example (scroll up, please), enter the following formula in B16:=DVAR(A1:E10;"Weight";A13:E14)In row 14, under Age, enter 7, 8, 9, and so on, one after the other. You will see as a result the variance of the weight values for all children of this age.DVARP functionvariances;based on populationsmw added "variances;"DVARPDVARP calculates the variance of all cell values in a database field in all records that match the specified search criteria. The records are from the example are treated as an entire population.SyntaxDVARP(Database; DatabaseField; SearchCriteria)ExampleTo find the variance of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:=DVARP(A1:E10;"Weight";A13:E14)In row 14, under Age, enter 7, 8, 9, and so on, one after the other. The variance of the weight values for all children of this age attending Joe's birthday party appears.