[Solved] print excel chart in color using vba
If my printer properties are set to Color, then this code will print a sheet in B&W: Sub PrintBW ActiveSheet.PageSetup.BlackAndWhite = True ActiveSheet.PrintOut End Sub and this code will print the sheet in color: Sub PrintColor ActiveShee......