索引转单元格坐标

  1. func CoordinatesToCellName(col, row int) (string, error)

[X, Y] 形式的行、列索引转换为由字母和数字组合而成的单元格坐标,或返回错误。例如:

  1. CoordinatesToCellName(1, 1) // returns "A1", nil