I have a file that contains 25 worksheets w/ all same formatting.
Now, I need to set the print area to A1:N58 for sheets("firstone") and set the print area to A1:N40 for sheets("secondone"). I only know how to do this for 1 worksheet (activesheet) at a time. Below is what i used.
sheets("firstone").select
sheets("firstone").Range("A1:N58").Select
ActiveSheet.PageSetup.PrintArea = "$A$1:$N$58"
How do I apply the print area to all 2 sheets at the same time and then have all 2 worksheets printed at once?
Now, I need to set the print area to A1:N58 for sheets("firstone") and set the print area to A1:N40 for sheets("secondone"). I only know how to do this for 1 worksheet (activesheet) at a time. Below is what i used.
sheets("firstone").select
sheets("firstone").Range("A1:N58").Select
ActiveSheet.PageSetup.PrintArea = "$A$1:$N$58"
How do I apply the print area to all 2 sheets at the same time and then have all 2 worksheets printed at once?