Hello All,
I'm creating a Gallery that will display a SharePoint document library subfolder and the files that have been modified within the past 7-days. I was able to display the files in the subfolder with this formula:
Filter(Documents, IsFolder = false && StartsWith('Folder path', "Shared Documents/Estimating")
However, I'm not sure what formula to add to display the modified files. I've tried the following and the gallery is blank and nothing is displayed. Your help is sincerely appreciated!
Filter(Documents, IsFolder = false && StartsWith('Folder path', "Shared Documents/Estimating"), Modified >= DateAdd(Today(), -7, Days))
OR
Filter(Documents, IsFolder = false && StartsWith('Folder path', "Shared Documents/Estimating") || (Modified > DateAdd(Today(),-7,Days)))