MACRO ADD ROW

G

Guest

I am trying to figure out how to create a macro that will add a row in the
proper place everytime. For ex. I have rows with months inputted. Every month
i would like to insert a row after the last month(A20) on the sheet and
insert the "next month"(A21) and then input data across the inserted row. The
problem then becomes the next month if I run the macro it will insert in a
new row after A20 when I need the row inserted after A21. Is there a way for
excel to know to go to the last Month in the row and insert a row.
 
M

mrice

You can use something like

LastRow = Cells(65536,1).end(xlup).row

to determine the last row on your worksheet and then add your new ro
below this

An alternative is to do something like

Cells(65536,1).end(xlup).offset(1,0) = NewMont
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top