One of the most common comments we get here is “how does xxx formula works?” Even though there is vast documentation on excel formulas including the built-in help in MS Office, often it is difficult for us to learn a formula quickly and use it in a snap. So to help new users of excel learn the most frequent formulas I have built an excel formula helper page.
The page currently lists about 50 most commonly used excel formulas along with 1 index card for each to explain,
- what the formula does
- what is its syntax
- 2 examples to understand how it works
see an example:
The good thing about these index cards is, they use simple day to day English to explain the formulas, so I am guessing they are a great way for new users to learn and use the formulas.
I have tried to keep the page simple so that anyone can come and learn a few formulas quickly. Play around with it and let me know if this is useful (of if something is funny / broken)
Here is the link: excel formula helper – 50 day to day formulas explained in plain English
If you like it, please support me by adding it to delicious or stumble or sharing it with a friend 🙂















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