During London 2012 Olympics, Usain Bolt reached the 100mts finish line faster than anyone in just 9.63 seconds. Most of us would be still reading this paragraph before Mr. Bolt finished the race.
To put this in perspective, NY Times created a highly entertaining interactive visualization. Go ahead and check it out. I am sure you will love it.
So I wanted to create something similar in Excel. And here is what I came up with.
Demo of Usain Bolt vs. Rest Visualization
Here is a quick demo of this interactive chart. Click on it to enlarge.
How is this made?
One thing is sure, It took me more than 9.63 seconds to create this 😉
The basic ingredients of this chart are Interactive Hyperlinks, Conditional formatting, Form Controls, INDEX + MATCH formulas, Picture links and Tables.
Since explaining all this is going to take forever, I made a short video showing you behind curtains of this. Watch it below [or click here to watch it on YouTube]
Download this Interactive Excel Workbook
Click here to download the workbook and play with it.
Note: This works in Excel 2010 or above only.
Do you like this visualization
I loved re-constructing this NY Times chart. It was a nice challenge. Although so many hyperlinks made Excel a bit sluggish, it was worth it.
What about you? Do you like this? Go ahead and break apart the download file and see what more you can do.
Special thanks to NYTimes for the inspiration.















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