diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-12-05 21:41:01 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-12-05 21:41:01 +0000 |
commit | f6e5e5f1c574fb352b260a02190e8b187f00ce19 (patch) | |
tree | a331343af29080ff28feb16eef24b6edafdeb660 /poi | |
parent | 6ca520e32d673c060253d840f6d846f9ad61e6a5 (diff) | |
download | poi-f6e5e5f1c574fb352b260a02190e8b187f00ce19.tar.gz poi-f6e5e5f1c574fb352b260a02190e8b187f00ce19.zip |
initial work on example 5
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895605 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi')
-rw-r--r-- | poi/src/test/java/org/apache/poi/ss/formula/atp/TestXLookupFunction.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poi/src/test/java/org/apache/poi/ss/formula/atp/TestXLookupFunction.java b/poi/src/test/java/org/apache/poi/ss/formula/atp/TestXLookupFunction.java index b549a59bbe..2ccc5ea410 100644 --- a/poi/src/test/java/org/apache/poi/ss/formula/atp/TestXLookupFunction.java +++ b/poi/src/test/java/org/apache/poi/ss/formula/atp/TestXLookupFunction.java @@ -74,9 +74,9 @@ public class TestXLookupFunction { HSSFCell cell = wb.getSheetAt(0).getRow(0).createCell(100); assertError(fe, cell, "XLOOKUP(B2,B5:B14,C5:D14)", FormulaError.NA); - String formulaText = "XLOOKUP(B2,B5:B14,C5:D14,\"not found\")"; assertString(fe, cell, "XLOOKUP(B2,B5:B14,C5:C14,\"not found\")", "not found"); + String formulaText = "XLOOKUP(B2,B5:B14,C5:D14,\"not found\")"; HSSFSheet sheet = wb.getSheetAt(0); HSSFRow row1 = sheet.getRow(1); String col1 = CellReference.convertNumToColString(2); |