Creating an Appended Combined Column to use as a database

SB98

New Member
Joined
Jan 18, 2022
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hi all,
I’ve been struggling with this for some time because I need to use formulas to automate the new database column, not VBA or power query. Essentially what I want to do is create a column that combines two other columns but the difference is appended to the bottom. For ease of explanation the combined column is Column E, the database list is column C and the new list is Column A. The combined column E must first list everything in column C and then check list A against list C and then display items in list A that are not already in List C at the end of the combined list column E. Also what would be beneficial is some sort of indicator of which list or column the item is referenced from.
I’m using excel 365.
these ranges in column A and C would not be the same and would be updated periodically .

Thanks!
Example ————————-

A. (New) C. (Database) E. Indicator
Cat. Toes. Toes. C
Dog. Mouse. Mouse C
Mouse. Dog Dog. C
Ham. Eggs. Eggs. C
Eggs. Cheese. Cheese. C
Toast. Toast. C
Cat. A
Ham. A
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Doesn't work.
Back soon
 
Last edited:
Upvote 0
Hi & welcome to MrExcel.
How about
+Fluff 1.xlsm
ABCDEF
1
2CatToesToesC
3DogMouseMouseC
4MouseDogDogC
5HamEggsEggsC
6EggsCheeseCheeseC
7ToastToastC
8CatA
9HamA
Data
Cell Formulas
RangeFormula
E2:F9E2=LET(RngA,A2:A6,RngC,C2:C7,f,FILTER(RngA,ISNA(MATCH(RngA,RngC,0))),r,ROWS(RngC),s,SEQUENCE(r+ROWS(f)),IF(s<=r,CHOOSE({1,2},INDEX(RngC,s),"C"),CHOOSE({1,2},INDEX(f,s-r),"A")))
Dynamic array formulas.
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,690
Members
449,117
Latest member
Aaagu

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