I was wondering if there is a way to reference multiple sheets in a single line in Excel VBA. I know you are able to reference multiple ranges, columns, rows via:
Range("G1:G5, G6:G10, H5:H10") etc...
I want to be able to do the same thing with sheets I tried this:
Sheets("Sheet1_Name, Sheet2_Name, Sheet3_Name").Range(...)
But that didn’t work so I was wondering if there was a special way to do this aside from putting the sheet names into variables then referencing the variables.