I am using apache poi creating the excel. I want to create the structure shown in above image.
I am not aware how to customise as per the image.
I am using apache poi creating the excel. I want to create the structure shown in above image.
I am not aware how to customise as per the image.
You can use
sheet.addMergedRegion(new CellRangeAddress(rowFrom,rowTo,colFrom,colTo));
And specify the row numbers and column numbers accordingly.