Hey guys,
I'm having a "problem" with delegation. I've already gone through the numerous threads on this issue but they didn't help me find a workaround/other solution.
I'm currenly building a simple apps to query the data from sharepoint list.
For example, I'm using the following formula to filter the data by the user inputs. The warning occurs.How will I fix this? Any recommendations please. See the Screenshot for better understanding. Thank you very much
Set(
Vstatus,
Dropdown5.Selected.Ivalue
);
ClearCollect(
MyRequestList,
Filter(
Contract,
CurrentUserEmail = 'Requestor Mail',
If(
!IsBlank(Vstatus),
Vstatus = 'Form Status',
true
),
If(
!IsBlank(TextInput9.Text),
StartsWith(
'Form NO.',
TextInput9.Text
),
true
)
)
)