Hello, I have a gallery that shows folders and files from a sharepoint library. The gallery will show folder and files and if you click on the folder, the gallery will change the display to that folder. if you click on a file it will launch the file. Everything works fine. Code is below for my gallery.
As i add more files to the sharepoint, they don't show up in my gallery like the other ones do. I did notice the ID number of the newest file was 6371 which made me think this is not showing up because the delegation is over 2,000. If this is true i could use a littlehelp in getting around this id possible by altering my gallery filters.
The sharepoint site documents has about 12 different folders with many subfolders and files within. But how i have the gallery set up is to set varfolderpath as only of those folders. I checked the properties of that folder and there are 556 files and 140 folders.
SortByColumns(
Filter(
'Documents',
'Folder path' = varFolderpath
),
"{IsFolder}",
SortOrder.Descending,
"{Name}",
SortOrder.Ascending
)