Hi @Maxwell123 ,
Do you want to filter two sharepoint libraries based on the same textinput?
Whether do you want to display the result in two galleries or in one gallery?
Could you tell me:
1)the structure of these two libraries?
2)which field do you want to filter based on that textinput? that field's data type?
I assume that the field is text type.
1)If you want to display the result in two galleries, you just need to insert one textinput, two galleries.
set gallery1's Items:
Filter(library1,Textinput1.Text in fieldname)
set gallery2's Items:
Filter(library2,Textinput1.Text in fieldname)
2)If you want to display the result in one gallery, then you firstly need to merge these two libraries data to one collection, then filter based on that collection.
Please notice that: one gallery could only has one data source, so you could not set the gallery's Items to two libraries.
set the app's OnStart:
ClearCollect(collection,library1,library2)
set the gallery's Items:
Filter(collection,Textinput1.Text in fieldname)
Best regards,