I'm trying to write a for loop that includes the following if statement:
...For x = 1 To lr:
If Range("G" & 1) = "Complete" Then...
The problem is the string "Complete"
is an option in a dropdown list from data validation in every cell in column G, and my if statement isn't recognizing it as true even if it's selected. How can I get it to recognize a value from a dropdown? Thanks!