Created
October 12, 2011 05:20
-
-
Save hrstt/1280362 to your computer and use it in GitHub Desktop.
Excel VBA: シートまたぎの印刷をすべて白黒にするマクロ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub MonotonePrint() | |
| Dim Current As Worksheet | |
| For Each Current In Worksheets | |
| ' 印刷設定を白黒に | |
| Current.PageSetup.BlackAndWhite = True | |
| Next | |
| ' ブック印刷 | |
| ActiveWorkbook.Worksheets.PrintOut | |
| ' 部数指定で印刷する場合 | |
| ' ActiveWorkbook.PrintOut Copies:=1 | |
| End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment