Hi @Gorilla_8 ,
Whether this collection is related to your filtered items(today+7)?
Collection is just a collection name in my test.
You could name it by other names. If two collections are not the same name, they will not affect each other.
Try this:
1)set the app's OnStart:
ClearCollect(collection2,Filter(tablename,DateValue(fieldname)=DateAdd(Today(),7,Days)))
//if it is text type, you need to use DateValue() to transfer
2)insert a toggle
set the toggle's OnCheck:
ClearCollect(collection2,Filter(tablename,DateValue(fieldname)=DateAdd(Today(),7,Days)))
set the toggle's OnUncheck:
ClearCollect(collection2,tablename)
set the toggle's Default:
true
3)set the gallery's Items:
collection2
//please replace with your tablename, fieldname
Best regards,