Site icon libreofficehelp.com

How to Count Words in LibreOffice Calc Cell

This quick tutorial explains the steps required to Count Words in LibreOffice Calc Cell.

There are no direct features available in LibreOffice that can help you to count words. In the early article, I explained how to count characters in LibreOffice Calc. In this guide, we count the words.

Count Words in LibreOffice Calc Cell

There is no specific way. This can only be achieved by combining some formulas in a Calc cell. The words in a sentence, in general, are separated by one single space, i.e. ” “.

Let’s do it via an example.

I have the following data in a Calc sheet in Column A.

Source data – words

The words are separated by a space. So, here’s a summary of the logic which we want to implement:

  1. Remove any leading and training spaces
  2. Count the length of the sentence
  3. Count the length without the spaces
  4. Subtract the above two values and add 1. Because for a minimum of two words, there is one space!

So, if you combine them, the following formula would give you the count of words in LibreOffice Calc cell.

=LEN(TRIM(A1))-LEN(SUBSTITUTE(TRIM(A1)," ",""))+1

In the above formula – change A1 as per your need.

Count of Words in LibreOffice Calc

I hope this gives some guidance on how you can Count Words in a spreadsheet. You can modify the above idea and achieve the desired result by combining the concept with other means.

Let me know in the comment section below if you are facing errors. And don’t forget to mention if it helped you.

Cheers.

Exit mobile version