How to delete rows in visual basic
I think its the EntireRow.Delete that you can use
So you can loop through your data, and any criteria that doesn't match put
Range("WhateverCell").EntireRow.Delete
"Ruben" wrote:
Hello,
I would like to delete rows for a specific criteria in visual basic, but I
don't know how. I have filtered my data, and now I would like to delete the
data that did not pass the filter. Thanks for helping!
|