pub fn coordinates_to_cell_name(col: u32, row: u32) -> Result<String, Error>Expand description
Convert 1-based (col, row) coordinates to an A1-style cell reference.
ยงExamples
use sheetkit_core::utils::cell_ref::coordinates_to_cell_name;
assert_eq!(coordinates_to_cell_name(1, 1).unwrap(), "A1");
assert_eq!(coordinates_to_cell_name(27, 100).unwrap(), "AA100");