First a quick personal update: We (Jo, kids & I) are in beautiful Virginia Beach. Yesterday, we had a perfect, lazy beach day. We woke up late, went to beach where kids played in sand. Got back to our house (rented thru airbnb) when it started raining, had lunch and took a nap. We got up and went to beach again, rode a family bike, watched several street performances, bought souvenirs, ate Thai food and drove home at 11. Long story short, we are having way too much fun and I feel like cheating on you by not posting anything Excel. So,
I have a poll for you.
What do you use Excel Tables for?
I will go first, I use them for,
- Maintaining all my raw data, so that I can use structural references
- Maintaining various trackers, for example I am tracking all our expenses in USA in a table.
- For quick formatting of data (zebra lining, filters, sorting etc.)
What about you? What kinds of data are you holding in tables and how are you using them. Please share using comments. Go.
Learn: Introduction to Tables, Introduction to structural references.
PS for our US readers: Have an enjoyable 4th of July & weekend. We are driving to Washington DC to celebrate the day with our friends and watch fireworks at National mall.














3 Responses to “Filter one table if the value is in another table (Formula Trick)”
What about the opposite? I want a list of products without sales or customers with no orders. So I would exclude the ones that are on the other table.
Good question. You can check for the =0 as countifs result. for example,
=FILTER(orders, COUNTIFS(products, orders[Product])=0)
should work in this case.
PS: I have added this example to the article now.
Hi there!
Could i check if there was a way to return certain fields of the table only?
so based off your example above, i would like to continue to use the 'Products" table as a way to filter out items from my "Orders" table, but only want to show maybe only the "Product" and "Order Value" fields, rather than all 5 fields (sales person, customer, product, date, order value).