VBA Coding
VBA Coding
Dim ws As Worksheet
With Application.FileDialog(msoFileDialogFolderPicker)
If .Show = -1 Then
Else
Exit Sub
End If
End With
Set ws = ActiveSheet
ws.Cells.Clear
row = 2
row = row + 1
Next objSubFolder
End Sub
Sub UnhideNextFilteredRow()
Dim ws As Worksheet
Set ws = ActiveSheet
End If
Next cell
MsgBox "Next rows after visible data are now unhidden.", vbInformation, "Unhide Complete"
End Sub