• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Hiding Rows based on cell value

best upload a file so that you'll know what to do with:
Code:
For Each cll In Range("A10:A109").Cells
  If cll.Value > Range("G6").Value Then cll.EntireRow.Hidden = True
Next cll
 
Back
Top