Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Last revisionBoth sides next revision
72:custom_reports_references_poijava [2019/03/08 20:28] ext-bkkr72:custom_reports_references_poijava [2019/03/08 20:29] ext-bkkr
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>
 +