Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Need help... I got this macro from ExcelTip.com (thanks to Ron de Bruin) basically to find the last filled row. I would like to use this as a worksheet function in cell (A2). As such, I entered =LastRow(), but the result is #VALUE. I did not pass any parameter into the function as I assume it will take the current Activesheet. Can someone help to show some lights with regards to this problem? Thanks in advance. Function LastRow(sh As Worksheet) On Error Resume Next LastRow = sh.Cells.Find(What:="*", _ After:=sh.Range("A1"), _ Lookat:=xlPart, _ LookIn:=xlFormulas, _ SearchOrder:=xlByRows, _ SearchDirection:=xlPrevious, _ MatchCase:=False).Row On Error GoTo 0 End Function -- slc ------------------------------------------------------------------------ slc's Profile: http://www.excelforum.com/member.php...fo&userid=1439 View this thread: http://www.excelforum.com/showthread...hreadid=400016 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Lastrow | Excel Worksheet Functions | |||
Lastrow - function not defined | Excel Discussion (Misc queries) | |||
'LastRow' Function not working | Excel Programming | |||
Go to lastrow using other column's lastrow | Excel Programming | |||
Help with LastRow | Excel Programming |