Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
No problem, Ron,
The spreadsheet is in Danish so you wouldn't understand it anyway :-) Problem with your function is just that is doesn't find last row, if last row is hidden and protected on a protected worksheet. Take a look: www.EXCELGAARD.dk\LastRow.XLSm But, I found a way around it :-) Thanks anyway. Ron de Bruin wrote: Hi Charlotte I not see you problem If you want send me a test workbook private so I can look at it "Charlotte E" <@ wrote in message ... Hi Ron, I've always used another little UDF function, I've created on my own, to find the last row. But I've also always never liked my own function, so when I saw yours i was delighted, since it looked much better than mine. But... Your function doen't seem to find the right last row on a protected sheet? Reason seems to be that the .Find method doesn't search protected cells. Is it possible to make your function work on protected sheets as well, since I really like your way of finding last row much better than mine? TIA, 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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
split post code (zip code) out of cell that includes full address | Excel Discussion (Misc queries) | |||
Run VBA code only worksheet change, but don't trigger worksheet_change event based on what the code does | Excel Programming | |||
Shorten code to apply to all sheets except a few, instead of individually naming them, and later adding to code. | Excel Programming | |||
Protect Sheet with code, but then code will not Paste error. How do i get around this. Please read for explainations.... | Excel Programming | |||
Excel code convert to Access code - Concat & eliminate duplicates | Excel Programming |