Hi all.
I have been struggling with this for a couple of days now and i can't seam to find a solution.
I have a collection from a SharePoint document library, i am trying to filter this as for some reason some of the files that are in a folder and now viewing on the app outside of the folder. (if you know why this is and there is another way to sort this please let me know)
But the solution i thought would be best would be to filter the gallery and i thought i had found the perfect column within the collection:
I want to filter using the {path} column in the collection as you can see above, however whenever i go to write the formula, that works for other columns within the collection, it seams as though the column is not recognized.
Filter(varEmtem, Name = "Email Templates/")
This formula is ok, and has no errors,
Filter(varEmtem, Path = "Email Templates/")
However this formula says the error "incompatible types for comparison. these types can't be compared: error, Text"
Any help would be much appreciated.
That worked thank you.
Hi @JEVANSAP ,
Please try to replace Path with 'Folder path' in your code:
Filter(varEmtem, 'Folder path' = "Email Templates/")
Best regards,
Rimmon