Why do we make dashboards? To me the reason would be “to provide all the necessary information at a glance so that you can make a decision (or just get a feel)”
I think the traditional dashboards are overloaded with lots of information (and sometimes data) and often take more time to interpret. This means less time for decision making.
With that backdrop, I would like to propose a simple alternative to executive dashboards
Tweetboard
What in the name of 13 sliced pie chart is a tweetboard?
Imagine a dashboard with out charts, but with 6 to 8 sentences, each less than 140 characters, explaining the data / trends concisely. That, my dear bird, is a tweetboard.
Take a look at an example tweetboard of monthly performance and you will know what it is:

Why I think tweetboard is an alternative to dashboard?
Because with tweetboard, your focus will be on reading the sentence and figuring out what to do with your business, not on making sense of 3 bars going up and 2 going down.
How to make a tweetboard?
Simple, Download the tweetboard excel template. Now go process your data, identify the messages you want to show in the dashboard. Go type them in the tweetboard template. Take a deep breath and go tell your story to the world.
Let us discuss:
What do you think? Would you replace a dashboard with tweetboard? Do you think it can stir up a decision maker towards action.
PS: I got the idea of tweetboard while reading Juice’s article on whether dashboards should be limited to one page.
PPS: The dashboard image is from accounting web.
PPPS: This is the first post with 2 3 PSs. 😛














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