Print sheet on cell value

sujittalukde

Well-known Member
Joined
Jun 2, 2007
Messages
520
I have a WB which have large sheets Also new sheets can be added by another macro and as such number of sheets could go more. So printing a particular sheet create problem.

So I need a macro which will print the sheet based on value of Cell A1 of Sheet named "Master"

for eg', say cell A1 of "Master" sheet contains ABC, then the code should print sheet named "ABC", and so on.
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Try

Code:
Sub PrintMaster()
Sheets(Sheets("Master").Range("A1").Value).PrintOut
End Sub
 
Upvote 0
Thanks VOGII.
It is exactly working as per requirement.
CAn one more thing be added - THat the code will clear the background color of the sheet to be printed before print and restore the same ie clearance of background color will be temporary for saving the ink.
 
Upvote 0
Try this

Code:
Sub PrintMaster()
With Sheets(Sheets("Master").Range("A1").Value)
    .PageSetup.Draft = True
    .PageSetup.BlackAndWhite = True
    .PrintOut
End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,739
Members
448,989
Latest member
mariah3

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