Let’s say I have a range
OFFSET($AA:$AA,start_,0,stop_-start_,1)~OFFSET($BD:$BD,start_,0,stop_-start_,1)~OFFSET($CG:$CG,start_,0,stop_-start_,1)
And let’s say I have three boolean fields named valid1, valid2, valid3
.
How do I change the range formula s.t. OFFSET($AA:$AA,start_,0,stop_-start_,1)
only gets in cluded when valid1
is true, OFFSET($BD:$BD,start_,0,stop_-start_,1)
only when valid2
is true and OFFSET($CG:$CG,start_,0,stop_-start_,1)
only when valid3
is true?
I.e. when, for example, (valid1,valid2,valid3)==(1,0,1)
, the range should be reduced to OFFSET($AA:$AA,start_,0,stop_-start_,1)~OFFSET($CG:$CG,start_,0,stop_-start_,1)