RicksAtWork
Programmer
I want to write a method that will return the value held in the nth VISIBLE cell from the mth row of a range
Function GetNthVisibleCellValue(InputRange As Range, row As Integer, cell As Integer) As String
End Function
i.e. if I pass the function a range which has been filtered and I ask for cell 1 on row 1, it will return the 1st visible cell on the first visible row.
How should I do this?
Function GetNthVisibleCellValue(InputRange As Range, row As Integer, cell As Integer) As String
End Function
i.e. if I pass the function a range which has been filtered and I ask for cell 1 on row 1, it will return the 1st visible cell on the first visible row.
How should I do this?