database1(), 'Profit', [ ['Tree', 'Height', 'Height'], ['=Apple', '>10', '<16'], ], ], [ 2, $this->database2(), 'Score', [ ['Subject', 'Gender'], ['Science', 'Male'], ], ], /* * Null value in datacolumn behaviour for DCOUNTA... will include not include a null value in the count * if it is an actual cell value; but it will be included if it is a literal... this test case is * currently passing literals [ 1, $this->database2(), 'Score', [ ['Subject', 'Gender'], ['Math', 'Female'], ], ], */ [ 3, $this->database2(), 'Score', [ ['Subject', 'Score'], ['English', '>60%'], ], ], ]; } }