Link to home
Start Free TrialLog in
Avatar of Dmitriy Kritskiy
Dmitriy Kritskiy

asked on

VBA: Best way to clear contents for multiple columns starting with 2nd row, and all the way down

What's the most efficient way to write the code to clear contents for multiple columns, let's say A through D, starting with 2nd row, and all the way down? Thanks
Avatar of gplana
gplana
Flag of Spain image

I think best way is:

Sheets("Test").Rows("2:65535").Delete
ASKER CERTIFIED SOLUTION
Avatar of Anthony Berenguel
Anthony Berenguel
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Dmitriy Kritskiy
Dmitriy Kritskiy

ASKER

Perfect!