Conditional Format for every two rows

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to format 2 rows, skip to rows, format 2, skip 2 ... using
conditional formatting? I'm familiar with =MOD(ROW(),2)=0...but it does
every other row. I want it to skip two rows, format the next two, skip 2,
format the next two, etc.

Is this possible? Thanks,

Joe
 
How about:

=MOD(ROW(),4)<2

Depending on where you want the rows shaded, you may want something like:

=MOD(ROW()+1,4)<2

(or some adjustment)
 
This is perfect. Thank you both!

Dave Peterson said:
How about:

=MOD(ROW(),4)<2

Depending on where you want the rows shaded, you may want something like:

=MOD(ROW()+1,4)<2

(or some adjustment)
 
Back
Top