Yes whereas in the below snippet I am setting the cell style individually for
each cell

 XSSFCell cell = row.createCell(0); 
 // Set cell style 
 cell.setCellStyle(cellStyle); 
 cell.setCellValue("some data goes here"); 
 cell = row.createCell(1); 
 // Set cell style
 cell.setCellStyle(cellStyle); 
 cell.setCellValue("");


--
Srikanth



--
View this message in context: 
http://apache-poi.1045710.n5.nabble.com/RE-XSSF-data-hidden-in-cell-column-when-cells-merged-tp5715961p5715965.html
Sent from the POI - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to