I’m trying to roll up linked records from multiple columns and return only the unique ones (ideally in record form, not string). For my example imagine I have different car models that can have different packages of wheels, chassis, and accessories. Each of those have separate tables where they have keywords associated with each package. I’d like to display a unique list of keywords associated with each car model that is a rollup of ALL the unique keywords associated with all 3 packages associated with each car.
I’ve tried 3 solutions on the far right but I’m running into a few challenges:
- CONCATENATE({Keywords-Wheels},", “,{Keywords-Chassis},”, ",{Keywords-Accessories}). My solutions are returning strings. Is it not possible to return the actual records so they’re linked?
- I have commas with empty spaces in between for cases where columns may not have any tags associated
- ARRAYUNIQUE({Keywords-Wheels},{Keywords-Chassis},{Keywords-Accessories}). When I try to apply ArrayUnique() across the 3 columns, it only takes the records from the first column.
Any help would be appreciated! I’m an experienced google sheets/excel user but have no idea how to do this within the limitation of Airbase formulas.