Last Cell on a Worksheet

D

DavidW

I would like to find the last cell used on a worksheet and place it in
variable. If the last cell is L257, I would like it stored as L25
rather than as an integer. I have routines to get the last row and las
column. I can then display the last cell as $L$257 with the following:


Code
-------------------
MsgBox Cells(LastRow, LastColumn).Addres
-------------------


I can then place that value in a string with the following:


Code
-------------------
Dim LastCell As String
LastCell = Cells(LrMaster, LcMaster).Addres
-------------------


The following code will give you an idea of how I want to use it, bu
it is not quite right. How would I specify a range of A2 throug
LastOne similar to what I have below? ("A2:LastOne") will not work.


Code
 
L

leonidas

Hi DavidW,

Try:
For Each Bcell In Worksheets("Master").Range("A2", LastOne)

That should do the trick.

Good luck!


Leonida
 

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