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

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)

Forum statistics

Threads
1,224,867
Messages
6,181,481
Members
453,046
Latest member
Excelvbaexpert

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