Find a specific value in a column on another sheet using vba

MistakesWereMade

Board Regular
Joined
May 22, 2019
Messages
103
I would like to store the cell range of a specific cell that has the same value as a cell from another sheet. Here is my code below.

I want my code to work where if the command button is clicked, it will delete a cell and shift up depend on if a checkbox is checked.

Code:
Dim Val1 As Range

Private Sub CommandButton1_Click()


If TextBox1.Value = True Then


    With Sheets("Inventory").Range("D3:D501")


        Set Val1 = .Cell.Find(What:=Lookup!C3)


    End With


Sheets("Inventory").Range("D3:D501").Delete Shift:=xlUp


End If


End Sub
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college

Forum statistics

Threads
1,214,632
Messages
6,120,649
Members
448,975
Latest member
sweeberry

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