Hi All.
I am trying to select the rows that contains the text "#N/A" on column N.
How do I do that?
My data are on columns B through columns N.
Sub CutNA()
Dim FirstNA As Long, LastNA As Long
FirstNA = Columns("N").Find("#N/A", , xlValues, , xlRows, xlPrevious, , , False).Row + 1...