I have a spreadsheet in which I have already created and ran a macro containing a vlookup for column K. My next step is to Filter column K to any #N/A and do another vlookup back to column F. Problem is the starting cell for the vlookup in column K will be different each time I run the macro. I think I can accomplish getting the vlookup to start in the first visible cell in column K using the following FUNCTION...
Function AllVisibleCells() As Range 'finds 1st visible cell in filtered column in order to do vlookup
Set AllVisibleCells = Range("K6:K" & Cells(Rows.Count, "K").End(xlUp).Row).SpecialCells(xlCellTypeVisible)
End Function
but apparently this will not run within the Sub without having a variable -
Need help in creating this variable please.
After doing the vlookup for column K, will also have to use this same procedures to do vlookups in columns N, Q, T, W, Z
Thanks
Bookmarks