Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Newsgroup Archive
Excel Newsgroups
Excel Programming
Conditoinal Row Delete
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Reply to thread
Message
[QUOTE="Stephen, post: 6433729"] Hi Folks, The code below works fine to hide the given row but I'd really like to delete the row and i can't seem to make ".Cells(x, "F").EntireRow.Delete" work for me. LastRowOfData = .Cells(.Rows.Count, "F").End(xlUp).Row For x = 11 To LastRowOfData - 1 If .Cells(x, "F").Value = 0 Then .Cells(x, "F").EntireRow.Hidden = True End If Next What am I missing? TIA! [/QUOTE]
Verification
Post reply
Forums
Archive
Newsgroup Archive
Excel Newsgroups
Excel Programming
Conditoinal Row Delete
Top