Hi,
I have created an app for collecting sales lead in PowerApp. The database is SQL Server Express Edition.
I want to create a page where any user can search by inputing multiple items. I am using the following formula on Item of the galary:
Filter(
Filter(
Filter('[dbo].[LeadTable]',
StartsWith(Follow_Up_Date,srchFolloupDate.SelectedDate)
),
StartsWith(Lead_Owner,srchLeadOwner.Text)
),
StartsWith(Lead_Status, srchLeadStatus.Selected.Value)
)
where: '[dbo].[LeadTable]' = Sales Lead data table
,srchFolloupDate = Power App date picker
,srchLeadOwner = input box for lead owner
,srchLeadStatus = drop down for lead status
The app is not accepting the formula. Please help.
Thanks,
Vivek