Yes, if there is a (potentially) large historical record and/or you want to ensure users cannot (vs should not) see the older rows. If you want to offer the user the option of seeing older rows, then no.
Your definition of week is not clear - if it is past seven days or current calendar week say Sunday to Saturday.
For Sunday to Saturday week , please try a filter expression of
EOWEEK(TODAY()) -6 >= [Last_Updated_Date]
For last seven days, please try an expression of
TODAY() -6 >= [Last_Updated_Date]
You could try slice filter as well as security filter. They have different uses.
With security filter the filtered out data does NOT reach the user’s device. So it is a security mechanism as well ( unintended data not reaching the user’s device). With slice, the entire table data reaches the user’s device. Security filters are also in general better in terms of app performance.
However if you use security filter on a table, and if you need filtered out data for some other view etc. in app it will not be available. For example in your case if you wish to show records of the previous week in some other view, you cannot do so. But with slice filter, you can have another slice to show previous week’s data.
How can we filter week data with 2 column combination ?
I have Set column being in 1,2,3,4 values for multiple rows and have create date.
I want to pull only the max value set on the app ?