Automatic hi-lite or shading every other line

M

MarkT

Is there a way to have Excel, when printing, shade or hi-light every other
line? I have a lengthly spreadsheet on 11 X17 paper, and a small font, so
viewing the sheet is hard. If every other line was hi-lighted, it might be
easier.

Any ideas?

Thanks for your help!
 
C

cvgairport

Try using the following formula. First highlight the area that you want to
do a faux "green-bar". Then in Format/Conditional Formatting set condition
1to "Formula Is" and then type in:

=MOD(ROW(),2)=0

Then select the format that you would like to use - color or pattern. This
will produce the "every other line" formatting and will readjust the color or
pattern if you insert a new line.

Hope this helps,

Amy
 
M

MarkT

That did the trick!

Thank you very much!

cvgairport said:
Try using the following formula. First highlight the area that you want to
do a faux "green-bar". Then in Format/Conditional Formatting set condition
1to "Formula Is" and then type in:

=MOD(ROW(),2)=0

Then select the format that you would like to use - color or pattern. This
will produce the "every other line" formatting and will readjust the color or
pattern if you insert a new line.

Hope this helps,

Amy
 
T

t.bats

MarkT said:
Is there a way to have Excel, when printing, shade or hi-light every other
line? I have a lengthly spreadsheet on 11 X17 paper, and a small font, so
viewing the sheet is hard. If every other line was hi-lighted, it might be
easier.

Any ideas?

Thanks for your help!
 
R

redbird

Select range to format. Assume cell in upper left is cell A1, then
Format | Conditional Formatting
Condition 1: Formula Is "=MOD(ROW(A1),2)=0"
Push "Format" button
Select "Patterns" tab
Select desired background color
Ok all dialog boxes
 
Top