add initial version of XMATCH

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895608 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-12-06 00:32:45 +00:00
parent c0681f0ca6
commit 80d4b8bd32

View File

@ -45,11 +45,11 @@ public class TestXMatchFunction {
@Test
void testMicrosoftExample1() throws IOException {
try (HSSFWorkbook wb = initWorkbook("Gra?")) {
try (HSSFWorkbook wb = initWorkbook("Gra")) {
HSSFFormulaEvaluator fe = new HSSFFormulaEvaluator(wb);
HSSFCell cell = wb.getSheetAt(0).getRow(2).createCell(5);
//TODO investigate issue
//assertDouble(fe, cell, "XMATCH(E3,C3:C7,1)", 2);
//TODO investigate issue with `Gra?`
assertDouble(fe, cell, "XMATCH(E3,C3:C7,1)", 2);
}
}