When I was in Perth, I visited Hui’s house one day. Lovely, Hui’s daughter (who is about 14) asked Hui how he knew me. Hui told that we both share a passion for Excel and thats how we got to know each other. Then she asked, What is Excel?
At this point, we both tried to explain what Excel is to her in a few ways with no success. Later Hui came up with a brilliant explanation.
He said, Excel has lots of small calculators all interconnected, so that you can do any sort of calculation.
So here is a challenge for you. How would you explain Excel to a small kid (or someone who never heard about it).
Share your answers using comments.
Go ahead and be funny, outrageous, creative or elaborate. Say something.














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).