I have 2 columns A and B. I want to check each value of column A as to if it exists in B. If it doesn't, I want to add a new row with the value.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
something like this will return a number of the start position if the term exists
you can then wrap this in an if
if you true you'll need to add a new row if false you will not. adding a new row is difficult if you have several rows already, do you want the row inserted, or added to the bottom of a list etc.. it would be easier to do a filter on the 'true' column and copy and paste these as a new row and edit to suit. |
|||
|
|
