

This is where every word of a sentence is in uppercase. Step 2 − Click the Change Case button and then select Lowercase option to display all the selected words in lowercase. You can use any of the text selection methods to select the portion of text. Step 1 − Select the portion of text that needs to be put in lowercase. It is very simple to change a selected portion of text into lowercase by following two simple steps − Change Text to LowercaseĬhanging text to lowercase is where every word of a sentence is in lowercase. Step 2 − Click the Change Case button and then select the Sentence Case option to capitalize the first character of every selected sentence. Step 1 − Select the portion of text that that needs to be put in sentence case. It is very simple to change the selected portion of text into sentence case by following two simple steps − Change Text to Sentence CaseĪ sentence case is the case where the first character of every sentence is capitalized. You can also press the CAPS LOCK to have every letter that you type capitalized, and then press the CAPS LOCK again to turn off capitalization. You can also capitalize a character you are typing by pressing and holding the SHIFT key while you type.
#Can you change case in word how to
SelectedCells.Value = UCase(SelectedCells.In this chapter, we will discuss how to change text cases in Word 2010.
#Can you change case in word code
Without wasting much time, below is the code that will convert your text to either capital or small letters.įor Each SelectedCells In Selection.Cells Doing this in Microsoft Word is very simple with a few clicks, but with Excel, things are different and tricky. How to capitalize in Excel with VBAĪs I already mentioned, with the use of VBA code, you can select a range of cells or the entire worksheet and change it to whatever case you like. After that, we’ll then learn how to do it using Functions. Because you’ll have to change each and every column one after the other for all the columns.īut if the text you want to capitalize is in only one or two columns, then I think using functions will be so much convenient and faster.įirst of all, let’s talk about how to capitalize in Excel using VBA. So if you have more than 10 rows in your worksheet there’s more work for you. But rather you’ll have to change them column by column or row by row using the functions. Without the use of the VBA code, you cannot capitalize on a selected range of cells at once.

You can use functions to capitalize in Excel and you can also use some VBA code to do the same.īut I personally prefer using Excel VBA because it makes it possible and easy to capitalize an entire worksheet or a selected range of cells. With the PROPER function, every letter will be converted to lowercase except for the first letter of each word. The LOWER function, on the other hand, converts text to lowercase.Īnd the PROPER function converts text to the initial case. The UPPER function converts text from lowercase to upper case letters. There are three inbuilt Excel functions purposely for changing cases: The UPPER function, the LOWER function, and the PROPER function. You know in Microsoft Word, you can simply do all this stuff with just a few clicks.

It is also possible to change the case so that only the first letters in each word will be capitalized. In this tutorial, I want to focus on how to change the cases of text in Excel.įor instance, you want to change the text from lower case to upper case. If you haven’t yet, you’ll soon come across a situation through your journey with excel, where you’ll want to manipulate text by changing the case, I mean capitalization.
