How can i get the Cell address from excel given a row and column number for example
row 2 and col 3 should return C2... Please help
public string GetCellAddress(int row, int col) { return (char)((int)'A' + (row - 1)) + col.ToString(); }