I need to figure out how can I format a table based on the date column to show only the past 7 days of entries.
Note: the table will be used everyday for new entries and will go on, however due to information I need to have only the data for the past 7 days.
Sub question: If you know how to do the above, then how can I view the hidden data without removing the conditional formatting or formula or a third option?
apply a filter like this: [date] >= today-7 (or 6, depending on whether you including today in the 7 days)
Looking at the hidden data can be done:
make a view of the same table and remove the filter (and place the table on another page if you so desire)
Or:
put a named checkbox on the canvas, call it something like 'ShowAll" and append your filtter formula: if (ShowAll,true(),[date] >= today-7)
If you can’ t make it work, create and share a dummy doc that resembles what you are trying to do and share it so we can show in your doc how can be done.