Product Recommendation – Excel Dashboard Training Kit

Share

Facebook
Twitter
LinkedIn

Excel Dashboard Training - Product Review and RecommendationIf you want to make better charts and create lasting impressions, chances are you have heard about Jorge Camoes. He writes at excelcharts.com (previously charts.jorgecamoes.com). I have been reading Jorge’s blog for over 2 years now and have linked to his excellent articles on PHD several times. Jorge also has an Excel Dashboard Training Kit, which teaches us how to make a dynamic and comprehensive excel dashboard.

What is Excel Dashboard Training Kit?

Jorge teaches a lot of charting and excel lessons at his blog excelcharts.com (I recommend that you subscribe to his blog, it is very good). The dashboard training kit is a culmination most of his lessons implemented in a practical way using Excel.

Jorge takes the demographic data of all countries in the world and creates an impressive dashboard out of it and teaches us how to do the same using this training kit. The training kit contains several videos explaining dashboard creation process as well as the dashboard excel files.

(take a look at final dashboard)

In the videos Jorge explains the process of dashboard creation by taking us thru,Final Demographic Dashboard - you will create something like this when you finish the training

  • How to connect Excel to Access to get data for the dashboard
  • How to create pivot tables from external data in MS Access
  • How to make charts from data in pivot tables
  • Putting the charts together in the dashboard (and adding form controls)
  • Adding macros to control the dashboard (and refresh data, animate charts etc.)
  • Final formatting touches to make it look better

The videos are structured in clear steps with lots of comments. Each video can take between 30 to 45 minutes to carefully watch and understand the concepts.

There are several valuable excel charting, formula, pivot table and VBA tricks and practical tips spread through out the tutorial vidoes. For eg. in the video “Creating pivot tables” Jorge teaches us how to make GETPIVOTDATA formula dynamic, how to fix pivot table layouts, how to get top10 values in pivot tables based on a data column. Most of these tricks are completely new to me. I have been replaying some of these videos whenever I have some time to keep the ideas fresh.

The final dashboard is shown to the right. (it is the non-VBA version, click on it for a larger image)

Benefits of Excel Dashboard Training Kit

If you have been reading PHD for a while, you will appreciate the necessity to know “tricks of trade” to make better charts and wow your audience. The dashboard training from Jorge is packed with tons of these.

In my opinion, this training will help you,

  • learn about connecting to external data sources
  • massaging (pre-processing) data so that you can create dashboard reports
  • learn a handful of tricks and formula uses that you can apply anywhere
  • format charts in aesthetically pleasing and info-graphically accurate ways
  • connect the dots – charts, formulas, form controls, macros, pivot tables to make something outstanding

Who is this training for?

Make no mistake, this is not a training for absolute dummies. You should be familiar with basics of formulas & charting. You should not be afraid to experiment and practice the ideas in this. You should be familiar with Excel 2003 (as the training videos are all in Excel 2003). If you have never seen excel 2003, then you may not be able to relate several things to Excel 2007 ribbon menus.

What will you get with this kit?

When you purchase a copy of excel dashboard training kit, you get,
Inside dashboard training kit

  • One Excel dashboard linked to MS Access (without VBA)
  • One Excel dashboard linked to MS Access (with VBA)
  • One Excel dashboard (all data inside, noVBA)
  • One Access DB with all the data
  • Training Videos and HTML web pages to see them
  • Free access to online training videos showing how to do this in Excel 2007 (only if you get this before Feb 1)

How much is the Excel Dashboard Training

For a limited time (until Feb1st), Jorge is selling the dashboard training kit for $47. This includes the free access to upgrades once they are released. Trust me when I say this is a HUGE bargain.

Go here to purchase a copy

My Review & Opinion

Jorge is a widely respected authority on charting. His commentary is always insightful and practical. In this training videos, he brings all his experience to teach us how to make better dashboards, charts, how to connect to external sources and how to manipulate pivot tables.

My only gripe is that these videos do not have any audio. But Jorge provides compelling video with lots of comments & interactivity to bridge that..

I recommend the dashboard training kit for anyone making dashboard reports frequently or aspiring to make them using Excel.

(for free dashboard tutorials and templates visit PHD’s excel dashboards page)

Any questions?

Do you have any questions about this product? Please drop a comment. I have asked Jorge to answer your queries here directly.

Also, if you bought a copy of this, please share your review here, it will help others.

Disclosure:

Jorge is a friend of mine. I have received a complimentary copy of this training kit. I also get a small commission when you buy a copy of the product. But I am sure you will derive more benefit out of this than what Jorge or I make.

Go ahead and get the dashboard training kit.

Facebook
Twitter
LinkedIn

Share this tip with your colleagues

Excel and Power BI tips - Chandoo.org Newsletter

Get FREE Excel + Power BI Tips

Simple, fun and useful emails, once per week.

Learn & be awesome.

Welcome to Chandoo.org

Thank you so much for visiting. My aim is to make you awesome in Excel & Power BI. I do this by sharing videos, tips, examples and downloads on this website. There are more than 1,000 pages with all things Excel, Power BI, Dashboards & VBA here. Go ahead and spend few minutes to be AWESOME.

Read my storyFREE Excel tips book

Overall I learned a lot and I thought you did a great job of explaining how to do things. This will definitely elevate my reporting in the future.
Rebekah S
Reporting Analyst
Excel formula list - 100+ examples and howto guide for you

From simple to complex, there is a formula for every occasion. Check out the list now.

Calendars, invoices, trackers and much more. All free, fun and fantastic.

Advanced Pivot Table tricks

Power Query, Data model, DAX, Filters, Slicers, Conditional formats and beautiful charts. It's all here.

Still on fence about Power BI? In this getting started guide, learn what is Power BI, how to get it and how to create your first report from scratch.

21 Responses to “How to Filter Odd or Even Rows only? [Quick Tips]”

  1. Vijay says:

    Infact, instead of using =ISEVEN(B3), how about to use =ISEVEN(ROW())

    So it takes away any chance of wrong referencing.

  2. Hui... says:

    I like Daily Dose of Excel

  3. vimal says:

    I like it.

  4. Luke M says:

    Just a heads up, you do need to have the Analysis ToolPak add-in activated to use the ISEVEN / ISODD functions. An alternative to ISEVEN would be:
    =MOD(ROW(),2)=0

  5. Debbi says:

    rather than use a formula, couldn't you enter "true" in first cell and "false" in the second and drag it down and than filter on true or false.

  6. Paul S says:

    Just for clarification, is Ashish looking to filter by even or odd Characters or rows?

  7. Fred says:

    so many functions to learn!

  8. Istiyak says:

    Nice support by chandoo and team as a helpdesk. Give us more to learn and make us awesome. Always be helpful.......

  9. Arps says:

    In case you want to delete instead of filter,

    IF your data is in Sheet1 column A
    Put this in Sheet2 column A and drag down
    =OFFSET(Sheet1!A$1,(ROWS($1:1)-1)*2,,)
    (This is to delete even rows)

    To delete odd rows :
    =OFFSET(Sheet1!A$2,(ROWS($1:1)-1)*2,,)

  10. Pippa says:

    If your numbered cells did not correspond to rows, the answer would be even simpler:
    =MOD([cell address],2), then filter by 0 to see evens or 1 to see odds.

  11. Matthew D. Healy says:

    I sometimes do this using an even simpler method. I add a new column called "Sign" and put the value of 1 in the first row, say cell C2 if C1 contains the header. Then in C3 I put the formula =-1 * C2, which I copy and paste into the rest of the rows (so C4 has =-1 * C3 and so forth). Now I can just apply a filter and pick either +1 or -1 to see half the rows.

    Another way, which works if I want three possibilities: in C2 I put the value 1, in C3 I put the value 2, in C4 I put the value 3, then in C5 I put the formula =C2 then I copy C5 and paste into all the remaining rows (so C6 gets =C3, C7 gets =C4, etc.). Now I can apply a filter and pick the value 1, 2, or 3 to see a third of the rows.

    Extending this approach to more than 3 cases is left as an exercise for the reader.

  12. Paulo says:

    Another way =MOD(ROW();2). In this case, must to choose betwen 1 and 0.

  13. Makhan Butt says:

    very different style Odd or Even Rows very easy way to visit this site

    http://www.handycss.com/tips/odd-or-even-rows/

  14. Terhile says:

    Thanks for the tip, it worked like magic, saved having to delete row by row in my database.

  15. majid says:

    Thankssssssssssssssss

  16. Bhanu says:

    Hi Chandoo- First of all thanks for the trick. It helped me a lot. Here I have one more challenge. Having filtered the data based on odd. I want to paste data in another sheet adjacent to it. How can I do that?
    For Example-
    A 1 odd
    B 3 odd
    C 4 even
    D 6 even
    I have fileted the above data for odd and want to copy the "This is odd number" text in adjacent/next sheet here. How can I do that. After doing this my data should look like this
    A 1 odd This is odd number
    B 3 odd This is odd number
    C 4 even
    D 6 even

  17. Adriana says:

    Hi! Could you please help me find a formula to filter by language?
    Thank you!

  18. avinash says:

    Chandoo SIR,

    I HAVE A DATA IN EXCEL ROWS LIKE BELOW IS THERE ANY FORMULA OR A WAY WHERE I CAN INSTRUCT I CAN MAKE CHANGES , MEANS I WANT TO WRITE ONLY , THE FIG IS FRESH, BUT IN BELOW ROW IT WILL AUTOMATICALLY TAKE THE SOME WORDS FROM FIGS AND MAKE IN PLURAL FORM , WHILE USING '' ARE'' LIKE BELOW

    The fig is fresh - row 1
    Figs are fresh - row 2
    The Pomegranate is red - row 3
    Pomegranates are red - row 4

  19. Arshad Hussain Shah says:

    =IF(EVEN(A1)=A1,"EVEN - do something","ODD - do something else") with iferron (for blank Cell)

Leave a Reply