I have 10 Excel files with around 50 sheets in one particular folder which I need to remove the first rows. Could you please suggest VBA code for doing this?
Thanks in advance!
Below is my code to delete the first row.
Sub DeleteFirstRow()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets
ws.Range("1:1").Delete
Next ws
End Sub