add xmatch test

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895622 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-12-06 13:05:08 +00:00
parent c84888490f
commit 6290a5ed24
1 changed files with 27 additions and 0 deletions

View File

@ -72,6 +72,15 @@ public class TestXMatchFunction {
}
}
@Test
void testMicrosoftExample3() throws IOException {
try (HSSFWorkbook wb = initWorkbook3()) {
HSSFFormulaEvaluator fe = new HSSFFormulaEvaluator(wb);
HSSFCell cell = wb.getSheetAt(0).getRow(2).createCell(3);
assertDouble(fe, cell, "INDEX(C6:E12,XMATCH(B3,B6:B12),XMATCH(C3,C5:E5))", 8492);
}
}
@Test
void testMicrosoftExample4() throws IOException {
try (HSSFWorkbook wb = new HSSFWorkbook()) {
@ -110,4 +119,22 @@ public class TestXMatchFunction {
return wb;
}
private HSSFWorkbook initWorkbook3() {
HSSFWorkbook wb = new HSSFWorkbook();
HSSFSheet sheet = wb.createSheet();
addRow(sheet, 0);
addRow(sheet, 1, null, "Sales Rep", "Month", "Total");
addRow(sheet, 2, null, "Andrew Cencini", "Feb");
addRow(sheet, 3);
addRow(sheet, 4, null, "Sales Rep", "Jan", "Feb", "Mar");
addRow(sheet, 5, null, "Michael Neipper", 3174, 6804, 4713);
addRow(sheet, 6, null, "Jan Kotas", 1656, 8643, 3445);
addRow(sheet, 7, null, "Nancy Freehafer", 2706, 2310, 6606);
addRow(sheet, 8, null, "Andrew Cencini", 4930, 8492, 4474);
addRow(sheet, 9, null, "Anne Hellung-Larsen", 6394, 9846, 4368);
addRow(sheet, 10, null, "Nancy Freehafer", 2539, 8996, 4084);
addRow(sheet, 11, null, "Mariya Sergienko", 4468, 5206, 7343);
return wb;
}
}