Here is a quick tip to reduce the time you spend on chart formatting – use chart styles & color themes.
Excel offers various pre-defined color schemes and chart styles. Using them is very simple.
- Select your chart
- Go to Chart Design ribbon
- Click on the style or color scheme you want.
- Your chart changes instantly.
Check out below screencast to learn more.

Using predefined styles is a great way to polish your chart. Keep in mind that not all predefined styles look gorgeous. So choose wisely.
Do you use chart styles?
I use chart styles or templates to speed up chart formatting.
What about you? Do you use these features? Share your experience in the comments section.
More chart formatting tips:
- Use arrow keys to select small / unreachable items on your charts
- Create a line chart with bands
- Set up meaningful titles on charts with this simple trick
- Work with charts faster using selection pane & select object tools
- More chart formatting tips & Quick excel tips














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