I have the following code for finding the last row in a range
How can I modify this to ignore numbers or non-text items, or do I need a new formula?
VBA Code:
Dim LDR1 As Long: LDR1 = .Range(.Cells(5, "C"), .Cells(150, LDC1)).Find("*", , , , xlByRows, xlPrevious).Row
How can I modify this to ignore numbers or non-text items, or do I need a new formula?