If you work with multiple Excel workbooks everyday, then here is a handy tip.

Open all the files you frequently use together.- Go to View ribbon and click on Save Workspace
- Give a name to your workspace
- Now, whenever you need to open all these files together, just double click on workspace file in your explorer.
- You are done!
Workspace saves not just file collection, but also window layouts. That means, if you like to arrange your Excel windows in a specific fashion, you can save this arrangement too.
Bonus tip: Use specific filter criteria all the time? Try custom views.
More tips on using Excel & shortcuts.
Do you use workspace feature?
I find workspace feature to be very useful when I need to work with multiple files, especially in cases like file comparison and consolidation. I can save the file layout as a workspace and re-open it whenever I want to resume the work.
What about you? How do you use workspace feature? Please share your tips & experiences with us using comments.














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