Hello,
I have installed a Sharepoint library based on the following article: https://www.matthewdevaney.com/power-apps-navigating-folders-subfolders-in-a-sharepoint-document-library/
So far everything is perfect, thank you very much for the article.
Now I have a problem with variables.
I would like to create a view that jumps to the corresponding subfolder using a variable and then also lists other content (from the folder).
Onstart:
Set(varFolderPathMarketingMITMark; "Marketing/Flyer/");;
Now I would like to switch from another gallery to the Sharepoint library using a button. Using the following code:
Set(
varFolderPathVariable1;
ThisItem.'Name'
);;
I created a new screen for this function and inserted a new gallery with the following code:
Gallery Items:
SortByColumns(
Filter(
Items_1;
Titel in varFolderPathVariable1
);
"{IsFolder}";
SortOrder.Descending;
"{Name}";
SortOrder.Ascending
)
Unfortunately, the gallery doesn't show me any content