For loop -- delete row and formula in list
Hi all,
How can I iterate a delete formula then delete column using for loop in list?
Something like this:
col_formula = {"Column1", "Column2" };
col2_row = {"Column3", "Column4"};
For( i = 1, i <= N Items ( col_formula ), i++,
col_formula (i) << Delete Formula //delete formula
col2_row (i) << Delete Row//delete row
);