VBA IF statement, yes find specific row and edit values, if no insert new line item in table

Thecraftycarrot

New Member
Joined
Nov 8, 2018
Messages
27
Hi All,

I am new to VBA so still learning.

What i am trying to do is have an if formula, that when it matched 2 criteria, it searches in a separate tab within a table for the item with that name. it will then update several fields based on what has been completed within the first sheet.

If no, it will then insert a row at the bottom of the table and populate some of the fields based on this.

i have so far got the following:
Code:
If Range("G45") = "Yes" And Range("M45") <> "" Then
[U][I]xxxx (search function, looking for cell m45 in sheet 1, to a line item in table in second sheet)[/I][/U] = Sheets("Test1").Range("M45")
[U][I]XXXX(same as above) [/I][/U]= Sheets("Test1").Range("E6")
Else
[I][U]Insert row, then in this newly inserted row copy data from sheet 1 into sheet 2[/U][/I] = Sheets("Test1").Range("E6")

i hope this makes sense

thanks in advance
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).

Forum statistics

Threads
1,223,893
Messages
6,175,240
Members
452,621
Latest member
Laura_PinksBTHFT

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