ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   MACRO ADD ROW (https://www.excelbanter.com/excel-discussion-misc-queries/90778-macro-add-row.html)

HELP

MACRO ADD ROW
 
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.

mrice

MACRO ADD ROW
 

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 row
below this

An alternative is to do something like

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


--
mrice

Research Scientist with many years of spreadsheet development experience
------------------------------------------------------------------------
mrice's Profile: http://www.excelforum.com/member.php...o&userid=10931
View this thread: http://www.excelforum.com/showthread...hreadid=545955



All times are GMT +1. The time now is 07:09 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com