Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to add text to certain rows of my worksheet which are visible only at
Print Preview/Print modes only. I want these details to hide or preferablly to store in a seperate sheet during edit to save screen space. e.g : I want to display only the "Product part number" during edit. But to included "indepth Product details" when I send it to Print/PrintPrview. How to handle this? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
you might want to use Workbook_BeforePrint in ThisWorkbook module
Private Sub Workbook_BeforePrint(Cancel As Boolean) For Each cell In Selection cell.Value = "indepth Product details: " & cell.Value Next cell End Sub |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
forgot to mention to select only those cells that have to be appended
with "indepth Product details" |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Adding text to Excel Worksheet | Excel Discussion (Misc queries) | |||
Some text won't print from my worksheet | Excel Worksheet Functions | |||
Find text and print its corresponding worksheet name and row | Excel Worksheet Functions | |||
Adding help text in a Excel Worksheet | Excel Discussion (Misc queries) | |||
print a specific area within a worksheet by clicking on print? | Excel Worksheet Functions |