Hi all,
I have a code that filters data, and then I have the following function:
Essentially I'm trying to see if the next available row in the data is blank.... but the offset function looks includes the filtered data.
Is there any way to select the row below the active cell, excluding the filtered data? i.e the same that would be selected if you just press the down arrow on a filtered data set?
Many thanks!
I have a code that filters data, and then I have the following function:
Code:
If IsEmpty([B]Range("A14").Offset(1, 0)[/B]) = False Then
'Is not blank
MsgBox "ABC"
Else
'Is blank
MsgBox "XYZ"
Essentially I'm trying to see if the next available row in the data is blank.... but the offset function looks includes the filtered data.
Is there any way to select the row below the active cell, excluding the filtered data? i.e the same that would be selected if you just press the down arrow on a filtered data set?
Many thanks!