How to use LOWER Function in Google Sheets

Last Updated : 23 Jul, 2025

The LOWER function in Google Sheets is a simple yet highly effective tool to convert all text in a cell to lowercase. It’s especially useful when you're dealing with inconsistent capitalization in your data or when you want to standardize text entries across your spreadsheet. Whether you're working with names, addresses, or any other type of textual data, using the LOWER function can help you maintain uniformity.

In this guide, we'll walk you through how the LOWER function works, its syntax, and practical examples of how to use it in Google Sheets. We’ll also explore how it can be combined with other functions, such as CONCATENATE, to further enhance your workflow.

Lower Function Google Sheets

The LOWER function in Google Sheets is used to convert all the letters in a given text to lowercase. It’s a helpful tool for standardizing text formatting, especially when working with inconsistent capitalization in your data.

How It Works

The LOWER function takes a text input or cell reference and changes all uppercase letters to lowercase while leaving numbers, spaces, and special characters unchanged. It's commonly used in data cleanup tasks, ensuring uniform text presentation across your spreadsheet.

Google Sheets LOWER Function Syntax

Here is the syntax of the LOWER function in Google Sheets:

=LOWER(text)
  • text: The cell reference or string you want to convert to lowercase.

The LOWER function is simple and effective, helping you create consistent, case-insensitive data in Google Sheets.

How to Make All Letters Lowercase in Google Sheets

If you want to convert all the letters in a cell to lowercase in Google Sheets, you can use the LOWER function. This is helpful if you want to standardize text or ensure all letters are in lowercase.

Here’s how to do it:

Step 1: Select the Cell

Choose the cell where you want to display the lowercase text. For example, let’s say you select B2. This is where the lowercase version of the text will appear after applying the formula.

Google Sheets LOWER Function
Select the Cell

Step 2: Identify the Cell with Text

Locate the cell that contains the text you want to convert to lowercase. In this example, the text "HELLO WORLD" is located in A2. You want to convert this text into lowercase in B2.

Google Sheets LOWER Function
Choose the Cell with Text

Step 3: Insert the LOWER Formula

In the selected cell (B2), type the following formula:

=LOWER(A2)

Explanation of the formula:

  • LOWER: This is a function in Google Sheets that converts all uppercase letters in the referenced cell to lowercase.
  • A2: This is the reference to the cell containing the text that you want to convert to lowercase. In this case, A2 contains "HELLO WORLD".

Once you enter this formula, it will convert the text in A2 ("HELLO WORLD") to lowercase, so B2 will display "hello world".

Google Sheets LOWER Function
Enter the LOWER Formula

Step 4: Press Enter and Apply to Another Cells

  • After typing the formula, hit Enter to apply it.
  • The cell B2 will now show the text in lowercase ("hello world").

To apply the formula to other rows or cells, simply drag the fill handle (the small blue box in the bottom-right corner of the selected cell B2) down to fill the formula for other rows. This will automatically convert any text in column A to lowercase in column B.

Google Sheets LOWER Function
Press Enter >> Apply to Another Cells

Using LOWER Function with CONCATENATE in Google Sheets

In this guide, we'll combine text from two cells (like a first name and last name) and convert the result to lowercase.

Step 1: Select the Cell for the Result

Choose the cell where you want to display the combined text in lowercase. For example, let’s select C2. This is where the lowercase version of the combined text (first name and last name) will appear.

Google Sheets LOWER Function
Select the Cell

Step 2: Identify the Cells to Combine

Identify the cells that contain the text you want to combine. For this example:

  • A2 contains the first name (e.g., "John").
  • B2 contains the last name (e.g., "Doe").

These are the cells you will combine into a single text string in C2.

Google Sheets LOWER Function
Identify the Cells to Combine

Step 3: Insert the LOWER and CONCATENATE Formula

Now, in the selected cell (C2), type the following formula:

=LOWER(CONCATENATE(A2, " ", B2))
Google Sheets LOWER Function
Insert the LOWER and CONCATENATE Formula

Explanation of the formula:

CONCATENATE(A2, " ", B2): This function combines the text in A2 and B2. The " " adds a space between the first name and last name.

  • For example, if A2 contains "John" and B2 contains "Doe", the result of the CONCATENATE function will be "John Doe".

LOWER(...): The LOWER function takes the combined result from CONCATENATE and converts it to lowercase. So, "John Doe" will become "john doe".

After typing this formula, C2 will display the combined first and last names in lowercase (e.g., "john doe").

Step 4: Press Enter and Apply the Formula to Other Rows

After typing the formula, press Enter to apply it. The text in C2 will now show the first and last name in lowercase, such as "john doe".

To apply the formula to other rows, simply drag the fill handle (the small blue box in the bottom-right corner of the selected cell C2) down to fill the formula for other rows. This will combine the first and last names from columns A and B and convert them to lowercase for each entry.

Google Sheets LOWER Function
Press Enter and Apply >> Formula to Other Rows

Also Read:

Conclusion

The LOWER function in Google Sheets is a simple yet powerful tool for converting text to lowercase. It can be used to standardize text formatting, making it easier to manage data, especially when dealing with inconsistent capitalization. Whether you are applying it to a single cell or a range of cells, the LOWER function ensures that all text appears in a uniform, lowercase format. Combining the LOWER function with other functions like CONCATENATE allows for efficient text manipulation, such as merging and standardizing names or phrases. Overall, the LOWER function is essential for text consistency, data cleaning, and ensuring that your content is well-organized and easy to read.

Comment