I have a predefined excel file which is a kind of form where most of the information is already mentioned but I have to just enter the Name, Address, etc details from my application made in Java.
I can store the cell (like A12, B20, etc) and update those cells using Apache POI libraries and methods easily. But I want it to be dynamic. Like if the users changes the name cell from A12 to B12, the Java code should not be modified.
Is there a way we can store some vaiable name in the excel cell and update the value of that cell from Java ?