Highlight in Excel but do not print out

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

Guest

I want to highlight some cells to flag me to fill those in. Is there a way to
show the highlighted part on the screen but NOT when it is printed?

Thanks!
 
Hi

file | page setup | Shhet tab - check the B&W box

hth
--
regards from Brazil
Thanks in advance for your feedback.
Marcelo



"texansgal" escreveu:
 
I have to have other cells be in Color though.

Marcelo said:
Hi

file | page setup | Shhet tab - check the B&W box

hth
--
regards from Brazil
Thanks in advance for your feedback.
Marcelo



"texansgal" escreveu:
 
so use a code to eliminate the highlight of these cells, print and highlight
again


***********************************
Sub colored()
Range("YOUR RANGE").Select
Selection.Interior.ColorIndex = xlNone
Range("A1").Select
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
Range("YOUR RANGE").Select
With Selection.Interior
.ColorIndex = 6
.Pattern = xlSolid
End With
Range("A1").Select
End Sub
********************************************************
hth
--
regards from Brazil
Thanks in advance for your feedback.
Marcelo



"texansgal" escreveu:
 

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

Back
Top