kelly mort
Well-known Member
- Joined
- Apr 10, 2017
- Messages
- 2,169
- Office Version
- 2016
- Platform
- Windows
Hello ,
I have this macro that I need help to modify :
Now my wish is to print two copies of each sheet (page) printed by the macro above.
Then on the first Copy, I want to place the text "cool" in cell B3 then on the second copy, I will place "Hot" in B3.
These texts are for demo only. Thanks and hope I find a solution
Kelly
I have this macro that I need help to modify :
Code:
Sub PrintSheets ()
Dim i As Long
For i = 1 To Me.Pages.Value
Sheets ("Page" & i ).PrintOut
Next i
End Sub
Now my wish is to print two copies of each sheet (page) printed by the macro above.
Then on the first Copy, I want to place the text "cool" in cell B3 then on the second copy, I will place "Hot" in B3.
These texts are for demo only. Thanks and hope I find a solution
Kelly