Egil, one of our alert readers from Norway sent this to me in e-mail, which I swear, I am not making up – A Fancy Gauge Chart. See the e-mail and chart yourself.

To make it more industrial-like, I’ve added:
1. Brushed metal background picture
2. Gradient fill format to the pie shares
3. A gradient fill. semi-transparent square (to make glass effect)
4. Sqrew-head pics
The original gauge chart template behind Egil’s industrious effort caused enough debate among our community.
I think gauges are a poor way to visualize data, but I don’t completely shoot them down either. Gauges connect well with certain type of audience / situations – like kids, informal communications, conveying just one point etc. But it would be disastrous to have a gauge chart on your weekly dashboard to the CFO, no matter how industrial-like it is.
Download Egil’s version of the Gauge
Click here to download the fancy gauge chart template. Thanks Egil for your idea. I think it is pimptastic.
Anyways, here is a fun challenge:
Download the gauge, and pimp it in your style. Take a screenshot, upload it somewhere and link it here. I want to see how you would pimp it.
And if you are furious to see a gauge chart on this blog, remember, and I am not making this up either, today is Friday. Have fun folks.
PS: yes, I am HUGE fan of Dave Barry, and no, I am not making this up.
Added later: Just to be clear, I think Egil‘s implementation is pretty cool and shows what is possible with excel.














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