
Hi Forum,
I have a Gallary where I am filtering based on a input text by name, however I want to have a condition before that that filters the gallary first by a value, for example where a Type field = Personal, the gallary should then only show all items where type is personal and then filter by the tex
SortByColumns(Filter('[dbo].[ew_arm_fact]',StartsWith(Client_Surname,Client_Search_Input_4.Text)),"Client_Surname")
How would I include the condition to set where Type = Personal?
Any help would be appreciated.
Thanks
@Anonymous
Assuming the TypeColumn is simply a text field you can do it like this. If TypeColumn is a Choices field in SP use TypeColumnName.Value = "Personal" instead.
SortByColumns(
Filter(
'[dbo].[ew_arm_fact]',
TypeColumnName = "Personal",
StartsWith(Client_Surname,Client_Search_Input_4.Text)
),
"Client_Surname"
)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."