How to Use a Line Break in Excel

(1 vote, average 5.00 out of 5)

In some circumstances, users would like to add a newline, return, or line break to a single cell within an excel spreadsheet. Hitting enter (or return) will jump to the next cell. However, there are hot keys that allow you to do this easily.

In Windows, you can use the alt-enter (or alt-return) key combination.

In Mac, you can use control-option-return. If this combination does not work, try command-option-return.

Partner Links:
Last Updated on Monday, 28 June 2010 09:12  
Related Articles

» Setting ownership (chown) on an NTFS partition in Ubuntu with NTFS-3G

If you want to set ownership of a folder on an NTFS drive in Linux, you need to change the ownership of its entry in /etc/fstab. Unfortunately you cannot use chown because NTFS is not a POSIX-compatible filesystem. Open up Users and Groups and find your user's ID. The first user on an Ubuntu install has uid 1000. Similarly, click on Manage Groups and find your group - the gid for the first user is 1000. Open /etc/fstab as root sudo gedit /etc/fstab and change the mount line to include the uid...

» For Loops in Python

For loops in Python are a bit different than most languages.  You may not iterate over some integer and increment as you go.  Rather, python uses for loops to iterate over lists or strings (represented as lists).  Python also does not use brackets to determine scope, but rather indentation.  Example below.  123>>> x = [1, 2, 3]>>> for value in x: #begin for loop, note the colon>>> print x #part of the loop, indented in In some cases, you want to know the where in...

» Redirect all output in shell script to a file

Redirecting a single command in a script to a file is straight-forward using the > syntax. For example, to redirect all STDERR output:1echo "hello, world" 2>> /tmp/filename.logTo redirect all lines of a Bash script to a file, add a scope around all of the lines and then redirect the scope to a file. For example:123456(echo "this is line 1 of my script"cat /proc/cpuinfodmesgecho "this is the end of my script") 2>> /tmp/filename.logThis allows you to capture all output of a script...