Answered
Need to find the width of a column in excel using cfspreadsheet.
Saw note to use getColumn width from a static function but don't know how to call it within coldfusion.
static int getWidth(Sheet sheet, int col) { int width = sheet.getColumnWidth(col); if (width == sheet.getDefaultColumnWidth()) { width = (int) (width * 256); } return width;}
