Anybody knows here how to look for a value that is greater than 1 in a column?
Set fileSheet = wb.ActiveSheet
fileSheet.Name = "Test"
Set rng = fileSheet.Range("D:D")
Set rngFound = rng.Find(">1")
If rngFound Is Nothing Then
MsgBox "No value"
End If
I'm trying to do it that way, but I know that if you put a double qoute, it will be treated as a String, so is there any way I can look for a greater than 1 value before filtering it? Please note that I will be working with a column that has thousands of data.