Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Any clues for speeding things up to return the location/range of the last
filled cell in a column? Function LastInRange(InputRange As Range) Dim CellCount As Long Dim i As Long CellCount = InputRange.Count For i = CellCount To 1 Step -1 If Not IsEmpty(InputRange(i)) And IsNumeric(InputRange(i)) Then Set LastInRange = InputRange(i) Exit Function End If Next i LastInRange = "" End Function |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Where is the justify function in Excel 2007? | Excel Discussion (Misc queries) | |||
Lookup Function for Excel 2007 | Excel Discussion (Misc queries) | |||
Excel 2007 Function Library | Excel Discussion (Misc queries) | |||
Excel 2007 nested function | Excel Worksheet Functions | |||
RTD Function Always Returns #N/A in Excel 2007 | Excel Worksheet Functions |