
Hello everybody
I'm beginner in Power Apps, and i'm creating an app using a library documents form Sharepoint.
I have to return years of files inside some document library folders (2023, 2022, 2021)
For this, I created a collection in the On Start and merged these collections into one and the files are shown in a gallery.
It is returning ALL files from folders, less than one. There is no error in the path, the code is exactly the same.
Collect(Files2023; Filter('LibraryName', 'Folder path' = 'text/text/2023/'));ClearCollection(AllTheYearsFolders; Files2023; Files2022)
Just one folder is not returning all the rows. Its like: have 70 files, just return 9.
where is possibly the error?
(detail: it's less than 1000 lines so it's within the limit)