]> source.dussan.org Git - poi.git/commitdiff
[github-243] basic version of XLookup
authorPJ Fanning <fanningpj@apache.org>
Thu, 2 Dec 2021 19:40:42 +0000 (19:40 +0000)
committerPJ Fanning <fanningpj@apache.org>
Thu, 2 Dec 2021 19:40:42 +0000 (19:40 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895500 13f79535-47bb-0310-9956-ffa450edef68

poi/src/main/java/org/apache/poi/ss/formula/atp/XLookupFunction.java

index 69f96184b5034b18ac9df152332dac4bcebeeeb2..ba86b6cec0509b60bf4b25fcfb581379c5133a71 100644 (file)
@@ -29,12 +29,11 @@ import java.util.Optional;
 /**
  * Implementation of Excel function XLOOKUP()
  *
- * POI does not currently support having return values with multiple columns and just takes the first cell
- * right now.
- *
  * <b>Syntax</b><br>
  * <b>XLOOKUP</b>(<b>lookup_value</b>, <b>lookup_array</b>, <b>return_array</b>, <b>[if_not_found]</b>, <b>[match_mode]</b>, <b>[search_mode]</b>)<p>
  *
+ * https://support.microsoft.com/en-us/office/xlookup-function-b7fd680e-6d10-43e6-84f9-88eae8bf5929
+ * 
  * @since POI 5.2.0
  */
 final class XLookupFunction implements FreeRefFunction, ArrayFunction {