Conditional Format for every two rows

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
 
D

Dave Peterson

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)
 
G

Guest

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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top