Selection.printout does not work

Fredric Andersson

New Member
Joined
Sep 30, 2021
Messages
5
Office Version
  1. 365
Platform
  1. Windows
Hi all,

kinda new to VBA, but im currently working on a userform. (Enligsh not my native language)
I have a userform that allows me to print out a userform, but i want to get multipel pages.

This is the current code i have, the printer is my defualt.
But i cant get it to work when i change the value from 1 to 3, i only get one pages printed. but i want 3.

private sub Commandbutton1_click()
If TextBox1.Value <> 5 Then
Selection.PrintOut copies:=TextBox1.Value, collate:=True
UserForm5.PrintForm
End If
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
You didn't state which is your default printer; example, if it's PdfCeator your macro will not work.
Copies:=TextBox1.Value will work with a real printer.
 
Upvote 0

Forum statistics

Threads
1,215,459
Messages
6,124,946
Members
449,198
Latest member
MhammadishaqKhan

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