SomethngWicked
Board Regular
- Joined
- Feb 18, 2015
- Messages
- 80
Hi, can someone please help regarding a VBA solution that could delete rows in a table that are extraneous? For example, I have a table of data that's generated each month and there's quite a few vendor values that aren't needed and require manual filtering/deletion. The range of data can vary (it's usually around 60,000 rows). What I essentially need is for the VBA to scan through the below example table and if vendor = Granny Smith, Golden Delicious, or Fuji, it would highlight and delete the entire row. After the VBA runs, there'd only be two rows in the table for Mcintosh and Honeycrip. If there's another (easier) way to accomplish this, please let me know. Thanks so much for the help!
Type of Food: | Color: | Vendor |
Apple | Red | Fuji |
Apple | Green | Granny Smith |
Apple | Red | McIntosh |
Apple | Red | Honeycrisp |
Apple | Red | Golden Delicious |