Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
72:custom_reports_references_poijava [2019/03/08 20:28] ext-bkkr72:custom_reports_references_poijava [2024/02/15 00:00] (current) – external edit 127.0.0.1
Line 2: Line 2:
  
 These functions can be used to retrieve values from an Excel file using the Java POI library. These functions can be used to retrieve values from an Excel file using the Java POI library.
- 
-//Note: For more information on the POI Java library, see http://poi.apache.org/// 
  
 <code> <code>
Line 62: Line 60:
  try { return cell.errorCellValue + 0; } catch(err) { }  try { return cell.errorCellValue + 0; } catch(err) { }
  return '';  return '';
- }+}
  if (t == Cell.CELL_TYPE_BLANK) return '';  if (t == Cell.CELL_TYPE_BLANK) return '';
  if (t == Cell.CELL_TYPE_BOOLEAN) return !!cell.booleanCellValue;  if (t == Cell.CELL_TYPE_BOOLEAN) return !!cell.booleanCellValue;
Line 83: Line 81:
 } }
 </code> </code>
 +