Hi @Anonymous
You could use the AddColumns() function to create the final merged collection
ClearCollect(colDashDealIntakeApp, ShowColumns('Deal-Intake-App', "Title", "Close_x002d_Date"));
ClearCollect(colDashDealUpdates, ShowColumns('Deal-Updates', "Deal_x002d_Ref_x002d_ID", "Pursuit_x002d_Closedown_x002d_Da"));
With({cddia:colDashDealIntakeApp,
cddu:colDashDealUpdates,
dealID:"Deal_x002d_Ref_x002d_ID",
pursuitclosed:"Pursuit_x002d_Closedown_x002d_Da"},
ClearCollect(
colAll,AddColumns(
cddia,"DealUpdates", Lookup(
cddu,dealID = "Title",'Deal-Updates'
),
"PursuitCloseDown", Lookup(
cddu,"dealID= "Title",pursuitclosed
)
)
)
)
This assumes that the first two collections actually exist. The merged collection would be colAll. The With() function is used to clean up your collection names and fields.