Power App to Search SharePoint Document Library Content Part #3
Adimulam Natarajan
0:00 / 0:00
Power App to Search SharePoint Document Library Content Part #3
3 136 просмотров · 5 лет назад
Adimulam Natarajan
163 подписчика
3 136 просмотров · 5 лет назад
1) Open the PowerApp built in Part #1 of this video series
2) Update the 'Search' button to
a) Call Microsoft flow
b) Create a collection _apiResults from the return value of flow
c) Update the filter by the ID column in Dcument Library to contain the ID in the collection in step b
ClearCollect(
_apiResults,
SPContentSearch.Run(txtSearch.Text)
);
ClearCollect(
colDocuments,
Filter(
Documents,
If(
IsBlank(txtSearch.Text),
true,
ID in _apiResults.ID
)
)
)
3) Test the App
Related Videos:
Part #1 • PowerApp to Search SharePoint Document Lib...
Part #2 • PowerApp to Search SharePoint Document Lib...