I want to move the cell to B2 after the below macro is executed.

Sub Append()

Dim ws As Worksheet
For Each ws In Sheets(Array("User1 Report", "User2 Report"))
    With ws
        
        .UsedRange.Offset(1, 1).Copy Destination:=Sheets("Overall Data").Range("B" & Rows.Count).End(xlUp).Offset(1)
        .UsedRange.Offset(1, 1).ClearContents
    
    End With

Next ws

End Sub
The macro is copying data from User1 Report and User2 Report and pasting it into Overall Data, the data in the User sheets will be added daily and once the Append is done, data in both the sheets will be cleared and the cell is not referring to second row of the user sheet i.e. B2. I need to manually move the cell to B2 in both sheets.

Is there any code to add to the above macro to move the cell to B2 in both the sheet?

Please help me on this.
Pradeep