Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() 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 ------------------- Dim Bcell As Range For Each Bcell In Worksheets("Master").Range("A2:LastOne") 'routine Next Bcel ------------------- Thank -- David ----------------------------------------------------------------------- DavidW's Profile: http://www.excelforum.com/member.php...fo&userid=3263 View this thread: http://www.excelforum.com/showthread.php?threadid=57425 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi DavidW, Try: For Each Bcell In Worksheets("Master").Range("A2", LastOne) That should do the trick. Good luck! Leonida -- leonida ----------------------------------------------------------------------- leonidas's Profile: http://www.excelforum.com/member.php...fo&userid=3537 View this thread: http://www.excelforum.com/showthread.php?threadid=57425 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Leonidas, Thank you. That works. Davi -- David ----------------------------------------------------------------------- DavidW's Profile: http://www.excelforum.com/member.php...fo&userid=3263 View this thread: http://www.excelforum.com/showthread.php?threadid=57425 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
populate cell on worksheet 2 if text is red on worksheet 1 | Excel Worksheet Functions | |||
How do I take a cell in one worksheet and add it into the formula in a different worksheet in the same workbook? | Excel Worksheet Functions | |||
link a cell in the 'Master' worksheet list to a 'Detail' worksheet | Excel Programming | |||
How can I link cell colours from worksheet to worksheet/workbook? | Excel Worksheet Functions | |||
selecting cell range in other worksheet without switching to worksheet | Excel Programming |