Today we are announcing free dashboard Development service for all small businesses who otherwise do not have the IT resources to get them built in-house.
Even though with all the dashboarding tools available in the market (including InfoCaptor) there is still considerable investment of time and resources required in order to ...
Posted in Announcement | No Comments »
In the previous article we added a pie chart (Create Pie chart from Excel Data) and now we continue adding a Bar chart
Now we add a Bar chart to our Excel Dashboard
Top Countries
select country_name, sum(quantity_sold) as qty_sold
from [detail_data$]
group by country_name
order by sum(quantity_sold) desc
We select the "Chart Type = Bar", enter ...
Posted in Excel | No Comments »