Hi I need some help I am creating a PowerApps visualization and I can't seem to make someone's list appear in PowerApps.
I am using a Data table from SharePoint to pull information. Is my formula correct or is there something I need to add?
If(IsBlank(TextInput1.Text),
Sort(
Filter('CRP Knowledge Management Tracker', TextInput1.Text in 'Program Code', Substitute(varUser, " ", "") in Substitute("Lead_x0020_CRP", " ", "")),
'Program Code',SortOrder.Ascending
),
Sort(
Filter('CRP Knowledge Management Tracker', TextInput1.Text in 'Program Code'),
'Program Code',SortOrder.Ascending
)
)
I need to make all of John Doe's information the default view whenever he logs-in and still has the ability to search other people's item when he types in the search bar.


