TextBoxes and Data Filtering
Upon further research I discovered that I needed to put the code below into
it's own module. Thanks for your help.
'Get the next visible cell down
Function NextVisbleCellDown(rng As Range) As Range
Dim rv As Range
Set rv = rng.Offset(1, 0)
Do While rv.Height = 0
Set rv = rv.Offset(1, 0)
Loop
Set NextVisbleCellDown = rv
End Function
|