Here is a quick visualization challenge for you.
There are 25 KPIs and each has a base value, current month, corresponding month values. The KPIs also have targets.
The data looks like this:

Download the data:
Click here to download the data for this contest.
Rules for this contest:
- Visualize this data using one Excel chart (one chart per KPI is ok too).
- You may omit any data
- You can use interactive charts.
- Do not use add-ins or VBA to make your charts
Go ahead and make your chart(s).
Last date & how to submit:
- Last date for this contest is 1st November, 2015 (Sunday).
- Once your chart is ready, email the workbook to chandoo.d@gmail.com with the subject “KPI contest“
- Winners will be announced in 2nd week of November, 2015.
What do winners get?
After carefully reviewing all the charts, 2 winners will be selected by our panel of judges. Each of them will get $100 Amazon gift card.
So what are you waiting for. Go ahead and visualize the data and show us how awesome you are.
Thanks to shaikhrulez @ Chandoo.org forum
Thanks to shaikhrulez at Chandoo.org forum for the data & question that became this contest.














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