Can anyone point me out how can i insert a row in an excel sheet? I recorded a macro, and it gave me:
Sheets("ABC").Select
Rows("22:22").Select
Selection.Insert Shift:=xlDown
Isn't a simpel way, or more general way of doing it?
I recommend using the Insert and Delete methods as little as possible. You might try appending a row to the bottom of your table and then sorting the table to achieve what the Insert would have done.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.