Today I am celebrating my 27th birthday. “not much left before thirty”, my wife playfully reminds me. “We still have 3 more years to go”, I said, thinking about all those things to do before I turn thirty list. All in all the year has been fantastic. We have moved to US for work reasons, I learned how to drive a car (on the roads that is), Got a mac, DSLR and iPOD nano, Started a small but fruitful business in India, Visited to New York and Niagara waterfalls, Overcame my fear of roller coasters, Became passionate about photography and excel, Came to know some of the coolest excel gurus in the world and Read all 7 books in the harry potter series. I hope this one turns out even better.
On to this weeks list of excel links.
14 misconceptions about charts and graphs
This excellent article by Jorge nails all the important charting misconceptions down. Make sure you read and understand this list before heading to make your next chart. My favorite is #2: You Should Master the (Technological) Tools of the Trade. While you need to know the technology enough to create good charts, great charts on the other hand come from you & your imagination.
9 steps to better chart formatting
Jon provides us with 9 simple yet very effective steps to create better charts. I have been thinking about writing on this for a while, but thanks to Jon, I don’t have to worry about it now.
When was the last time hidden cells created such issue? A formatting fubar in one of the excel spreadsheets containing contracts that are acquired by Barclays Capital from Lehman Brothers highlights the perils of hidden cells. We all know that you can hide a row / column in excel by right clicking on the row / column header and selecting hide option. Make sure you tell about the hidden cells when you share your work with others.
Handling CSV files when the content has genuine commas
CSV files are a popular way to share tabular data. You can use them in Excel without thinking twice. But what if you need to create CSV for content that has commas already in it? Daily Dose of Excel provides us with some VBA to handle delimiters in CSV files.
Don’t forget about the A in VBA
This article by Stephane Viot, a Program Manager at MS Excel Team, reminds us about the Automation part of VBA. We all try to solve uncommon problems in Excel by using little VBA wizardry. But often we leave the last steps for manual processing. The article addresses one such problem (extracting unique cells from a range) and tells us how we can automate the whole thing.
Earlier Excel Links:
Excel Links – Mt. Rainier Edition
Excel Links [Oct 6]
Excel Links – Complete Archive
Want to share a link? Use the comments form below or mail me at chandoo.d at gmail.com














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 ""