Is there any other way to merge cells in Excel using Apache POI library?
I was trying using the following, but its not working
// selecting the regio
The best answer
sheet.addMergedRegion(new CellRangeAddress(start-col,end-col,start-cell,end-cell));