if (cellContents.startsWith("=")) {
cellContents = parseFormula(cellContents);
Debug.log(Debug.INFO, "YAHOO Found Formula" + cellContents);
}
CellDescriptor cellDes = new CellDescriptor(row, column, ca, cellContents);
try {
ws.putCell(cellDes);
}
catch (JMCException jmce) {