
Announcements
Hi all,
I'm creating an App for a client which requires model form integration. So far it is working great but I have a sticking point when adding another filter condition into my gallery filter.
I'm currently filtering for 'Timesheet line items' which are related to the particular record the user is viewing (which match via ID) as so...
Sort(
Filter(
'Timesheet Line Items',
Timesheet.'Timesheet identifier' = [@ModelDrivenFormIntegration].Item.'Timesheet identifier'
),
'Date worked',
Ascending
)
This is working fine. However, I also need to check that the field "status" within 'Timesheet Line Items' is ACTIVE to ensure I do not display any inactive records.
I've been trying for ages, does anyone have any tips for inputting this argument into the above?
Any help would be great.
Thanks