Capitalise All Letters in a Row or Column (Excel 2013)

It is so easy to capitalise all the letters in a sentence or paragraph in Word (and vice versa), but it isn’t exactly straightforward to do the same in Excel. Yes folks, you can actually change the capitalisation of the words in Excel too! It just requires extra steps to achieve it as compared to Word.

Picture this data entry scenario. You are compiling a customer contact list with a few columns and over 1000 rows of entries. Something like this:

capitalise_all_letters1

As you can see, the entries do not have consistent capitalisation, and you want to capitalise all the letters as a form of standardisation. Let’s start with the column “CUSTOMER NAME”.

1.   Insert a new temporary column next to column C “CUSTOMER NAME”. Note that the new column D has a default table header name “Column1”.

capitalise_all_letters2
 

2.  Click the empty cell of the first data entry line (i.e. one line below the table header). In this example, it will be cell D3.

capitalise_all_letters3
 

3.  In cell D3, type the formula =upper([@[CUSTOMER NAME]]) and then hit the Enter button.

capitalise_all_letters4

Alternatively, you can begin typing =upper( in cell D3 and then click cell C3. This will automatically insert the table header name “CUSTOMER NAME” into the formula. Insert the close bracket ) to complete the formula.

4.  Immediately after you have pressed the Enter button, all the empty cells in column D will be automatically filled with text in uppercase.

capitalise_all_letters5
 

5.  Press the Ctrl and C buttons to copy all values in column D (i.e. starting from cell D3). Alternatively, select all cells with values in column D, right-click any of the selected cell and select Copy from the pop-up menu.

capitalise_all_letters6
 

6.  Right-click cell C3 and select Paste Special from the pop-up menu. Then, select Paste Values (first icon) from the submenu.

capitalise_all_letters7
 

7.  Now that all the text in column C are capitalised, you no longer need the temporary column D. Delete the entire column D.

8.  Repeat Step 1 to 7 to capitalise the text in other columns.

 

But Why Can’t I Just Delete Column C Instead of D? That Way, I Don’t Have to Copy the Values from D and Paste It Into C.

Well, let’s go back to Step 3 and 4. When you type the formula in cell D3 and hit the Enter button, two things happened. First (obviously), all the text in column D are capitalised. Second (that isn’t obvious), the cells in column D have actually turned into formula! If you select any of the cells (with values of course) in column D, for example, D6, the formula bar shows you =upper([@[CUSTOMER NAME]]) instead of “MUTUSAMY INDUSTRY LTD”.

capitalise_all_letters8
 

The formula that I’ve used here is called structured reference. You can read further to understand how it works and why you should be using this type of reference when handling data in a table. So, when you delete the original column C, what happens next is, the formula in column D (which is now, the new column C) will throw you an error message like this:

capitalise_all_letters9
 

This #REF! error occurs when a formula refers to cells that have been deleted (or replaced with other data). So, in order to avoid such error, you need to copy and paste as values to get rid of the formulas (hence, Step 5 and 6). Savvy?

You can also turn all the text into lowercase or proper case! Just repeat the same steps but replace the =UPPER() formula with:

=LOWER() :  if you want to convert all text into lowercase

=PROPER() :  if you want to convert all text into proper case

 

About perrinator

I wear many hats - blogger, writer, freelancer, gamer, traveler, baker, white-collar slave - I strive to offer valuable insights by sharing real-life examples of work-related challenges and how to address them. So, join me on this journey of learning and growth together!

View all posts by perrinator →

2 Comments on “Capitalise All Letters in a Row or Column (Excel 2013)”

Leave a Reply

Your email address will not be published. Required fields are marked *