How can I find the last row in a range of cells that hold a formula, where the result of the formula is an actual value and not empty?
Say in a simplified way that
Function returnLastRow() With ActiveSheet.UsedRange returnLastRow = .Find("*", , xlValues, , xlByRows, xlPrevious).Row End With End Function