I have a cell of which I know the column number. I need to find out what is the corresponding letter using Apache POI.
String column_letter = newCellReference(cell).convertNumToColString(column_number);
This is what I've tried but it's not working.