Hi,
I have a gallery that is getting the sum of a column from another table as a value. This needs to filter on just the rows where date is greater than Today's date.
From my understanding and testing PowerApps won't allow my to do a straight
Sum(
Filter( 'Table2',
Label2 = ProjectID,
Date > Today()
),
Orderssum
)
Instead I have two columns that I think could be useful to filter on. Year and month (in digits).
Is it possible and if so, how to inside my filter function add a condition if year >= Year(Today()) and if that's true then month > Month(Today()).
Not sure how to work around this.
Thank you very much!