I'm writing a script that set conditional formatting for each group of cells, based on the 1st cell of each group.
For(i=0,i<10,i++)
/*
other part of the script
*/.whenFormulaSatisfied('=INDEX(A1)<0,5')
Instead of A1 I want to use a notation different than A1notation. I need that A1 becomes after each loop C1, then E1, then G1 and so on.
thanks in advance