ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Macro to find the next free line (https://www.excelbanter.com/excel-programming/308037-macro-find-next-free-line.html)

Madasu

Macro to find the next free line
 

I'm having trouble recording a macro that will find the next free line in a
column so I can append data.

What macro commands will in effect select a cell, end/down, down?

Any help appreciated

--
Milton

Rodney POWELL

Follow-Up: Macro to find the next free line
 
Milton --

See article - Identifying the Real Last Cell ...

www.beyondtechnology.com/geeks012.shtml


- Rodney POWELL
Microsoft MVP - Excel

Beyond Technology
Spring, Texas USA
www.BeyondTechnology.com



"Madasu" wrote in message ...

I'm having trouble recording a macro that will find the next free line in a
column so I can append data.

What macro commands will in effect select a cell, end/down, down?

Any help appreciated

--
Milton

Madasu

Follow-Up: Macro to find the next free line
 
On Wed, 25 Aug 2004 17:18:47 -0500, Rodney POWELL wrote:

Milton --

See article - Identifying the Real Last Cell ...

www.beyondtechnology.com/geeks012.shtml

- Rodney POWELL
Microsoft MVP - Excel

Beyond Technology
Spring, Texas USA
www.BeyondTechnology.com

"Madasu" wrote in message ...

I'm having trouble recording a macro that will find the next free line in a
column so I can append data.

What macro commands will in effect select a cell, end/down, down?

Any help appreciated


Excellent Rodney. Many thanks. (I'm kicking myself for the simplicity of
bottom up!!

Thanks agran
--
Milton

Andoni[_22_]

Macro to find the next free line
 
Try this:

Range("A1").End(xlDown).Offset(1, 0).Select

or

Range("A65536").End(xlUp).Offset(1, 0).Selec

--
Message posted from http://www.ExcelForum.com


Madasu

Follow-Up: Macro to find the next free line
 
On Wed, 25 Aug 2004 22:31:30 GMT, Madasu wrote:

On Wed, 25 Aug 2004 17:18:47 -0500, Rodney POWELL wrote:

Milton --

See article - Identifying the Real Last Cell ...

www.beyondtechnology.com/geeks012.shtml

- Rodney POWELL
Microsoft MVP - Excel

Beyond Technology
Spring, Texas USA
www.BeyondTechnology.com

"Madasu" wrote in message ...

I'm having trouble recording a macro that will find the next free line in a
column so I can append data.

What macro commands will in effect select a cell, end/down, down?

Any help appreciated


Excellent Rodney. Many thanks. (I'm kicking myself for the simplicity of
bottom up!!

Thanks agran


Sorry Rodney I'm still stuck. I'm pretty new to this and so the "even
better way" quoted in the article has me licked. However my real problem is
that the end up line will find the last row but I want the next blank row.
If I record the macro with end up (xlUp argument) and then the down key it
uses 'select' instad of moving to the line below the current selected cell.
Obviously no matter where xlUp take me the select argument won't vary.

I hope that's understandable.

Any ideas?

Thanks
--
Milton

Tushar Mehta

Follow-Up: Macro to find the next free line
 
To some extent, finding the 'last cell' in a column (or worksheet)
depends on one's definition of 'last cell.'

If you are satisfied with the xlUp approach for a particular column
(say, column A), a simple, though far from foolproof, method is
WKS.Cells(Rows.count,1).end(xlup).offset(1,0), where WKS is a variable
of type Worksheet.

For a more robust way to find the first empty cell in a column see
http://groups.google.com/groups?thre...f27ae0598aa86%
40msnews.microsoft.com

Of course, it still relies on a particular definition of 'empty.'

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions

In article ,
says...
On Wed, 25 Aug 2004 22:31:30 GMT, Madasu wrote:

On Wed, 25 Aug 2004 17:18:47 -0500, Rodney POWELL wrote:

Milton --

See article - Identifying the Real Last Cell ...

www.beyondtechnology.com/geeks012.shtml

- Rodney POWELL
Microsoft MVP - Excel

Beyond Technology
Spring, Texas USA
www.BeyondTechnology.com

"Madasu" wrote in message ...

I'm having trouble recording a macro that will find the next free line in a
column so I can append data.

What macro commands will in effect select a cell, end/down, down?

Any help appreciated


Excellent Rodney. Many thanks. (I'm kicking myself for the simplicity of
bottom up!!

Thanks agran


Sorry Rodney I'm still stuck. I'm pretty new to this and so the "even
better way" quoted in the article has me licked. However my real problem is
that the end up line will find the last row but I want the next blank row.
If I record the macro with end up (xlUp argument) and then the down key it
uses 'select' instad of moving to the line below the current selected cell.
Obviously no matter where xlUp take me the select argument won't vary.

I hope that's understandable.

Any ideas?

Thanks



All times are GMT +1. The time now is 08:35 PM.

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