Google Docs – spreadsheet application has introduced some major upgrades to their editor today.
Some of the key changes include:
- Introduction of menus to access all spreadsheet functions / features by category: Now the spreadsheet app menus look more like Excel 2003 menus. Looks like Google is trying hard to close gap between the two applications.
- Improved and less ambiguous toolbar: Now the toolbar has lesser icons on it but it is more user friendly and simple.
- Named ranges: I haven’t seen these before. Or they were hidden somewhere in the cluttered toolbar. But the named ranges feature can be really useful if you work with tabular data and use lots of formulas.

New share and auto-save buttons: The new “Share” and “save” buttons are cool and functional. They have replaced the earlier “save”, “save & close” buttons. They have also changed the “share” screens, now when you click on the share options, you would see a normal dialog box with spreadsheet sharing options etc. instead of the earlier version with screen tabs.
Give these new features a try, who knows, you might find spending 90 odd dollars on a full blown spreadsheet application like MS Excel a waste of money.
PS: the first screenshot of Docs is from Google spreadsheet help page














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