Excel keeps lighting it up with an "Object variable missing" error. Number 91.
Function GetMonthRange(sheetMonth) As Range
GetMonthRange = ActiveCell.Range("A1:AB1")
End Function
I'm pretty sure that Excel is maintaining its own clipboard.
Here's the link to the whole file.
https://github.com/okamura1967/Directors_project_sheet/blob/master/project-sheet-for-directors.vbs
Setis required when you are assigning a value to a variable other than primitive ones such as integer, string, double etc. In the above example, you are returning aRangeinstance which is an object variable. In order to assign to such variable, you needSet.Range("A1:AB1")orActiveSheet.Range("A1:AB1")instead ofActiveCell.Range("A1:AB1"). Although both should work same, the former is better.