Hi All I am using POI, I want to insert a row between two rows in an Excel File, for example I have 10 rows and I am going to insert a row between 4'th and 5'th. I wrote these codes for this purpose: HSSFRow hssfRow = hssfSheet.createRow(5)
There is a problem, I lost my past row! (row 5'th). I am looking for a solution for keeping past row or rows after inserting new row(s). Thanks a lot
