save and print tabs

MOORED

New Member
Joined
Sep 25, 2017
Messages
14
Hi

I have the following code that saves and prints just the visible tabs in a workbook, but I want to change the code so that it only saves and prints the first two tabs only could do with a little help if possible :)


Sub SaveShts()

Dim Ws As Worksheet

Application.ScreenUpdating = False

For Each Ws In Worksheets
If Ws.Visible Then
Ws.Copy
ActiveWorkbook.SaveAs "C:\Users\********\Desktop" & Ws.Range("K1").Text, 51
ActiveWorkbook.Close
End If
Next Ws

End Sub
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Try this:

Code:
Sub SaveShts()

 Dim Ws As Worksheet, i As Integer

 Application.ScreenUpdating = False
i = 0
 For Each Ws In Worksheets
 If Ws.Visible Then
 i = i + 1
 If i > 2 Then Exit For
Ws.Copy
 ActiveWorkbook.SaveAs "C:\Users\********\Desktop" & Ws.Range("K1").Text, 51
 ActiveWorkbook.Close
 
 End If
 Next Ws

 End Sub
 
Upvote 0

Forum statistics

Threads
1,214,945
Messages
6,122,393
Members
449,081
Latest member
JAMES KECULAH

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