Hi @Claire_Eymin,
On the Usage table, Add a formula field with
TONOW({Date})
Set {Date} to the name of your Used date. This will tell you how many days there are to that date from now.
Now you can filter to only show Used dates not in the past.
I thought this might be better than with in 7 days as that is too restrictive for a formula, if you ever wanted to change that threshold just change the filter.

Or
You can get the WEEKNUM({Date}) of the used date. Then add a formula to find this weeks number and output a yes/no result that is easier to filter on.
IF(WEEKNUM({Date})=WEEKNUM(TODAY()), 'This Week', 'Not This Week')
Hi @Claire_Eymin,
On the Usage table, Add a formula field with
TONOW({Date})
Set {Date} to the name of your Used date. This will tell you how many days there are to that date from now.
Now you can filter to only show Used dates not in the past.
I thought this might be better than with in 7 days as that is too restrictive for a formula, if you ever wanted to change that threshold just change the filter.

Or
You can get the WEEKNUM({Date}) of the used date. Then add a formula to find this weeks number and output a yes/no result that is easier to filter on.
IF(WEEKNUM({Date})=WEEKNUM(TODAY()), 'This Week', 'Not This Week')
Hi,
Thanks for the input! TONOW didn’t quite do what I needed as it was just returning a value with no indication if it was in the past or future. However, this out my mind to work again and I have achieved what I wanted. I’m not sure it’s very elegant but it does the trick.
I added a formula in my usage table to return only dates after today.

Then I added a lookup field in my recipe table to look for that field.

The in my ingredient table I added a lookup of that field via the recipe table and filtered not empty cells, therefore only showing ingredients needed.

Hi,
Thanks for the input! TONOW didn’t quite do what I needed as it was just returning a value with no indication if it was in the past or future. However, this out my mind to work again and I have achieved what I wanted. I’m not sure it’s very elegant but it does the trick.
I added a formula in my usage table to return only dates after today.

Then I added a lookup field in my recipe table to look for that field.

The in my ingredient table I added a lookup of that field via the recipe table and filtered not empty cells, therefore only showing ingredients needed.

Great Job!
As you can see there are many ways to get the solution you are after. Glad it worked out.
Hi @Claire_Eymin @Vivid-Squid
I have a similar problem statement relating to creating a grocery shopping list from a meal plan but my use case and thus data structure is slightly different. Would you be able to help?