getStartCol method
- String num
Returns the excel style column name for the given column number.
Implementation
String getStartCol(String num) {
switch (num) {
case "1": return "E";
case "2": return "Z";
case "3": return "AU";
case "4": return "BP";
case "5": return "CK";
default: return "";
}
}