Still a little stuck here!
I have two data sources, both containing a 'Tasks' column. I want to set the items property of my gallery to filter both data sources on 'Tasks' according to the selected values.
The statement also contains a lookup which is working fine (thanks a contributor on this forum!)
AddColumns(
Filter(
'Engagement Tasks',
Title = Gallery2_1.Selected.Value),
&&
Filter(
'Engagement Phases',
Title = TabPhases.Selected.Value),
),
Description,
LookUp(
'Engagement Phases' As _Data,
_Data.Tasks = Tasks
).Description
)