I will create an Excel file using footer. In this case, the contents of the footer are three columns for signature. Is it possible to create a column in footer using .apache.poi.hssf.usermodel.HSSFFooter?
The footer I will create is like this picture 
But when I try to using the HSSFFooter, I only contain one line. Like this pict

the first line is replace by the second line that I declare,
Here's my code :
HSSFFooter rowSignature0 = sheet0.getFooter();
rowSignature0.setCenter("KOLOM PROSES PENJURNALAN");
// tanggal
String now = new SimpleDateFormat("dd/MM/yyyy").format(new Date());
counter+=1;
rowSignature0.setLeft(now);
rowSignature0.setCenter(now);
rowSignature0.setRight(now);
So, do you have any idea to create this footer?
Excel sheet footers consist of one line having three columns - left, center and right. Texts in columns may have line breaks but not really single table rows. That is how Excel provides sheet footers and even using Excel GUI one cannot really put table rows into a sheet footer.
So what one can create using Excel and comes closest to your requirement is the following:
Code: