Working with multiple charts (or drawing shapes / images) can be a very slow process. But here is a secret to boost your productivity.
Use selection pane & select object tools
Selection Pane & Select Objects?
If you have never heard of these, don’t worry. These are 2 very powerful features hidden in Excel. Once you know how to unlock them, you will never look back.
How to use selection pane & select object tools to work with charts faster – Video
In this video, understand how to use these powerful features to work with charts faster.
You may watch this video on our YouTube channel too.
More about Selection Pane & Select Object tools:
- Selection Pane – what is it, where is it and how to use it?
- Select objects tool – add it to QAT to improve productivity
What is your favorite productivity hack for charts?
My favorite hacks are select objects tool, paste special > formatting and copy paste.
What about you? what is your favorite productivity hack for making better charts? Please post it in 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).