I recently needed to filter a Dataverse view per this thread,
Dataverse Views - Can I Use a Variable From My Canvas App and Send to the 'Filter By' In My View? and @dpoggemann provided a great solution as shown below.
// Gallery - ITEMS Property (Works)
Search( Filter( AssignedUserss, 'AssignedUserss (Views)'.'DIApp Home User Dashboard' ), User().Email, "cr4de_assignedemail" )
Now using the code above, I need to also filter WHERE Close Date has not been reached +90 days. So if the close date is 4/15/2022 (+90 days) then it would displayed in the gallery but if close date is 1/1/2022 (+90 days) then it would not be displayed.
Here is my gallery.

This code is for the Close Date in the gallery.
// Close Date in the gallery Where DRID is the lookup column
Text( ThisItem.DRID.CloseDate, "[$-en-US]mm/dd/yyyy" )
Thanks for any feedback.