• 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
 
Thanks, that worked! However, if the number in cell G6 changes, the adjustment does not update the range A10:A109.
 

Attachments

  • Gift Card-Tracking Template.xlsm
    31.4 KB · Views: 4
Thank you!!!
When I password protect the top section of my worksheet (password: gcadmin) it cause a runtime error 1004 - suggestions on how to fix?
 

Attachments

  • Gift Card-Tracking Template(1).xlsm
    41.2 KB · Views: 3
Back
Top