Nothing gives a teacher more satisfaction than seeing a student apply the knowledge to do something awesome. So naturally, I jumped with joy when I got this email from Dan, one of my VBA Class students,
Hi Chandoo,
After going thru your VBA Classes, I realized that we can lots of awesome stuff with pivot tables + simple macros. I recently created an Excel Dashboard to depict MLB (Major League Baseball) Pitching Stats. I could not have done this had I not learned VBA. Thank you so much for teaching the class.
I got curious and requested Dan, if I could share the file with you all. Being a lovely person, Dan agreed immediately.
MLB Pitching Stats Dashboard – using Excel + VBA

[Click here for larger version]
How does this dashboard work?
Dan used a lot of techniques to weave together this dashboard. Since it would take me until Christmas if I explain everything, I made a short video explaining how this dashboard works. See it below:
You can see it on our youtube channel too.
What techniques are used in this dashboard?
Dan is a regular reader of Chandoo.org, so he used many of the charting & formula techniques we teach here (as well as in my Excel School & VBA classes). Click thru below links to learn them.
- Dynamic Named Ranges using OFFSET formula
- Dynamic Charts
- Using Form Controls
- Sorting a list using Pivot Tables
- Updating Pivot Table Report Filters using VBA
- Excel Dashboards – Examples, Resources & Ideas
- Highlighting points in line charts & scatter plots
Download MLB Pitching Stats Excel Dashboard
Click here to download the Excel workbook and play with the dashboard.
Ready to Create your Own Dashboards & VBA Code?
If you want to create similar stuff and wow everyone at work, then joining my upcoming batch of VBA classes is a good idea. We are re-opening enrollments for this course on September 5th.
Click here for course details.
If you are interested in our VBA class, join our newsletter.
Thank you Dan
Thank you so much Dan for making my day. I really liked the way you have put together many concepts to create a stunning dashboard.
If you liked this dashboard, say thanks to Dan.














11 Responses to “Use Alt+Enter to get multiple lines in a cell [spreadcheats]”
@Chandoo:
One more useful trick.......
In a column you have no. of data in rows and need to copy in the next row from the previous row, no need to go for the previous rows but entering Alt + down arrow, you will get the list of data, (in asending order), entered in the previous rows...
This is another great tip. I use this all the time to make sense of some *very* long formulas. As soon as the formula is debugged I remove the break.
Great tip Chandoo!
I use this feature often and it has even gotten the, "how did you do that" response.
Thanks!
@Ketan: Alt+down arrow is an awesome tip. I never knew it and now I am using it everyday.
@Jorge, Tony: Agree... 🙂
[...] Day 1: Insert Line Breaks in a Cell [...]
how can we merge a two sheet.
excellent idea. Chandoo you are genious
Hi chandoo,
I have used ctrl+enter to break the cell. But I did not get the result.
Please tell me how can i break the cell in multiple lines.
Hi, Ranveer,
Its not Ctrl+enter to break the cell, use Alt+Enter to make it happen.
hi Chandoo....
how we can use Alt+Enter in multiple rows at the same time please reply hurry i have lot of work and have no time and i m stuck in this. 🙁
Alt+J worked once 🙁
So I found another more reliable way:
=SUBSTITUTE(A2,CHAR(13),"")
Where A2 is the cell that contains the line breaks which the code for it is CHAR(13). It will replace it with whatever inside the ""