Delete row in Book 2 depending on value of cell B4 in Book 1 - VBA

Mr2017

Well-known Member
Joined
Nov 28, 2016
Messages
644
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hi

I need to write code which loops and deletes rows in a workbook (let's call it Book 2), if the name of a row in column A in Book 2 is the same as the name of cell B4 in Book 1.

Please find below some sample data.

For Book 1, the name in cell B4 is "Coffee" in this example (but it could be "Cereals," "Cake," etc). You can copy and paste the data below or type "Coffee into cell B4 of a file called "Book 1."

Coffee

<colgroup><col><col></colgroup><tbody>
</tbody>

For Book 2, you can paste the data below or type "Department" in cell A2, "Coffee" in cells A3 and A4, and "Cereals" in A5 and A6. I'd then like to create code that deletes rows that contain the word "Coffee" in column A of this file (because "Coffee" is the value in cell B4 in the first file. Does anyone know how to do this? Thanks in advance.

Department
Coffee
Coffee
Cereals
Cereals

<colgroup><col></colgroup><tbody>
</tbody>
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
How about
Code:
Sub Mr2017()
   With Workbooks("Book2.xlsm").Sheets("Sheet1")
      .Range("A1").AutoFilter 1, Workbooks("Book1.xlsm").Sheets("Sheet1").Range("B4")
      .AutoFilter.Range.EntireRow.Delete
      .AutoFilterMode = False
   End With
End Sub
 
Upvote 0
Hi Fluff

Thanks for the prompt response.

When I run this, I get a 'run-time error 9' that says the subscript is out of range and it highlights this line:

.Range("A1").AutoFilter 1, Workbooks("Book1.xlsm").Sheets("Sheet1").Range("B4")

Do you know why that may be?

Thanks in advance.
 
Upvote 0
You need to change the workbook & sheet names to match what they really are.
 
Upvote 0

Forum statistics

Threads
1,214,846
Messages
6,121,905
Members
449,054
Latest member
luca142

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top