Ejemplo n.º 1
0
def apply_spaced_format_to_cell(cell: xw.Range):
    spaced_formula: str = get_spaced_formula(cell.formula)
    if rng_is_array(cell):
        cell.formula_array = spaced_formula
    else:
        cell.formula = spaced_formula