You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by jo...@apache.org on 2008/04/11 21:36:38 UTC

svn commit: r647278 - in /poi/trunk/src/java/org/apache/poi/hssf/record/formula/functions: Hlookup.java Vlookup.java

Author: josh
Date: Fri Apr 11 12:36:37 2008
New Revision: 647278

URL: http://svn.apache.org/viewvc?rev=647278&view=rev
Log:
fixed typo and formatting in class javadoc

Modified:
    poi/trunk/src/java/org/apache/poi/hssf/record/formula/functions/Hlookup.java
    poi/trunk/src/java/org/apache/poi/hssf/record/formula/functions/Vlookup.java

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/formula/functions/Hlookup.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/formula/functions/Hlookup.java?rev=647278&r1=647277&r2=647278&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/formula/functions/Hlookup.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/formula/functions/Hlookup.java Fri Apr 11 12:36:37 2008
@@ -25,15 +25,15 @@
 import org.apache.poi.hssf.record.formula.eval.ValueEval;
 import org.apache.poi.hssf.record.formula.functions.LookupUtils.ValueVector;
 /**
- * Implementation of the VLOOKUP() function.<p/>
+ * Implementation of the HLOOKUP() function.<p/>
  * 
- * HLOOKUP finds a column in a lookup table by the first row value and returns the value from another row.
+ * HLOOKUP finds a column in a lookup table by the first row value and returns the value from another row.<br/>
  * 
  * <b>Syntax</b>:<br/>
  * <b>HLOOKUP</b>(<b>lookup_value</b>, <b>table_array</b>, <b>row_index_num</b>, range_lookup)<p/>
  * 
  * <b>lookup_value</b>  The value to be found in the first column of the table array.<br/>
- * <b>table_array</> An area reference for the lookup data. <br/>
+ * <b>table_array</b> An area reference for the lookup data. <br/>
  * <b>row_index_num</b> a 1 based index specifying which row value of the lookup data will be returned.<br/>
  * <b>range_lookup</b> If TRUE (default), HLOOKUP finds the largest value less than or equal to 
  * the lookup_value.  If FALSE, only exact matches will be considered<br/>   

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/formula/functions/Vlookup.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/formula/functions/Vlookup.java?rev=647278&r1=647277&r2=647278&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/formula/functions/Vlookup.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/formula/functions/Vlookup.java Fri Apr 11 12:36:37 2008
@@ -27,13 +27,13 @@
 /**
  * Implementation of the VLOOKUP() function.<p/>
  * 
- * VLOOKUP finds a row in a lookup table by the first column value and returns the value from another column.
+ * VLOOKUP finds a row in a lookup table by the first column value and returns the value from another column.<br/>
  * 
  * <b>Syntax</b>:<br/>
  * <b>VLOOKUP</b>(<b>lookup_value</b>, <b>table_array</b>, <b>col_index_num</b>, range_lookup)<p/>
  * 
  * <b>lookup_value</b>  The value to be found in the first column of the table array.<br/>
- * <b>table_array</> An area reference for the lookup data. <br/>
+ * <b>table_array</b> An area reference for the lookup data. <br/>
  * <b>col_index_num</b> a 1 based index specifying which column value of the lookup data will be returned.<br/>
  * <b>range_lookup</b> If TRUE (default), VLOOKUP finds the largest value less than or equal to 
  * the lookup_value.  If FALSE, only exact matches will be considered<br/>   



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org