Hi Folks
Currently in my formula, I am using:
Set src = ws.Range("B3:C3").CurrentRegion.Offset(1, 0)
Set dest = wssum.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0)
src.Copy Destination:=dest
I need to change the 'currentregion' to just the data in B3:C3 (down to the end of the...