I want the user to be able to input the sheet they would like to go to, then allow the user to search the column headers name, filter the column, and run analysis to ensure everything under that particular column header name is blank, then provide a message to the user. This is what I have so far but I keep getting
Sub NoData()
Dim SheetInput As String
Dim Area As String
Dim myValue As Variant
Dim Col As Long
'Go to sheet
SheetInput = InputBox("Provide a sheet name.")
Sheets(SheetInput).Activate
'Filter "Date" column for Not Equal To Blanks
myValue = InputBox("Give Column name")
Col = Application.Match(InputBox, Sheets(SheetInput).Rows(1), 0)
If IsEmpty(Range(myvalue).End(xlDown)) = True Then
MsgBox "Validation Complete"
Else
MsgBox "Validation Incomplete: User End Date column NOT empty"
End If
End Sub