Is there a better way to group dates by months in Pivot Tables with VBA?
So far the only way to group dates in Pivot Table with VBA is the following:
Range("A4").Select
Selection.Group Start:=True, End:=True, Periods:=Array(False, False, False, _
False, True, False, False) Frankly...