Text in a cell visable on screen but BUT doesn't get printed

T.I.M.

New Member
Joined
Apr 9, 2004
Messages
32
[Fixed]
How can I show the 1st 3 rows off the ,,first'' worksheet, on each new worksheet?

So it's some sort of Header?
[Fixed]


And another question:
How can I enter text in a cell that I can see on screen but doesn't get printed?
I don't like that comment thing in Excel, because you only see the/that comment when the corresponding cell is active.



great thanks,
Tim
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
/Me is a little stupid

T.I.M. said:
How can I show the 1st 3 rows off the ,,first'' worksheet, on each new worksheet?

So it's some sort of Header?

Fixed it => PageSetup, Worksheet, rows on top of each page!

:LOL: :biggrin:



BUT... still I need to get this figured out:
How can I enter text in a cell that I can see on screen but doesn't get printed?
I don't like that comment thing in Excel, because you only see the/that comment when the corresponding cell is active.




greetings,
Tim
 
Upvote 0
Hi - Welcome to the board

You can set the print area and not include the cells you don't want to print. You will still see them on the screen, but they will not print out.

File | Print Area | Set Print Area
 
Upvote 0
Re: Text in a cell visable on screen but BUT doesn't get pri

Which cells are you trying to hide?
 
Upvote 0
Re: Text in a cell visable on screen but BUT doesn't get pri

You could try making the cell font white before print and change it back like:
for cell A4
In the vbCode:

Workbook section:

Private Sub Workbook_BeforePrint(Cancel As Boolean)
'Chas Weber 4/9/04
Range("a4").Font.Color = vbWhite
End Sub

Private Sub Workbook_Open()
'Chas Weber 4/9/04
Range("a4").Font.Color = vbBlack
End Sub

In the Sheet section for sheet cell is on:

Private Sub Worksheet_Activate()
'Chas Weber 4/9/04
Range("a4").Font.Color = vbBlack
End Sub

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
'Chas Weber 4/9/04
Range("a4").Font.Color = vbBlack
End Sub
 
Upvote 0
Re: Text in a cell visable on screen but BUT doesn't get pri

@Chas17:
WORKS!!!!!!! GREAT MAN!
You're my Hero! :wink:

Only one little thing left (not a real problem)
The tekst only turn black when you click somewhere in the sheet, can't it get black again when you drop back from in the sheet from the print menu?


@Hotpepper:
I would like to hide row 2 and 3 from my printer so I can use these rows to put comments in.



greetings.
Tim
 
Upvote 0

Forum statistics

Threads
1,221,579
Messages
6,160,615
Members
451,658
Latest member
NghiVmexgdhh

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top