あなたはWordとPowerpointで単語(count words in Word and Powerpoint)を数える方法を知っています。Microsoft Excelで単語を数える方法を考えたことはありますか?単語を数えるオプションはありますか、それともそうするための公式はありますか?このガイドでは、数式を使用してExcelシートの単語を簡単に数える方法を理解するのに役立ちます。そのための公式を見て、それを理解しましょう。
Excelで単語をカウントする関数
Microsoft WordやPowerpointのように、Excelには単語を数えるツールがありません。しかし、単語を数える方法があります。これは複雑なプロセスであり、一度に1つのセルに対してのみ機能しますが、それを通過して、セルのグループに対して機能するようにします。単語を数える式を理解するには、最初に式のいくつかの関数を理解する必要があります。、、、です。LEN()
_TRIM()
SUBSTITUTE()
- この
LEN()
関数はセルを受け取り、セルに表示される文字数を示します。セル内の文字数と、文字間に含まれるスペースの数がわかります。 - この
TRIM()
関数は、セル内のテキストの最初と最後の空白を切り取ってセルに表示される文字数を示します。 - この
SUBSTITUTE()
関数は、テキストまたはデータの一部を選択した別の部分に置き換えます。そのための構文はですSUBSTITUTE(Cell,"old_text","new_text")
。数式では常にテキストを引用符で囲むことを忘れないでください。
数式でこれらの3つの関数を使用して、単語数を取得します。
Excelで単語を数える方法
Excelで単語を数えるために、私たちが学んだ上記の関数を使用します。それらを一緒に使用して、単語数がどれであるかを知りたい数値を取得します。Excelには単語数をカウントするツールがないため、関数を使用して単語数を取得するには、より創造性を発揮する必要があります。そのために、関数を使用してセル内の文字数をカウントしてから、スペースなしで関数をLEN()
使用して文字数をカウントします。SUBSTITUTE()
次に、2つの差を1で加算して、単語数を取得します。
簡単に言うと、セル内のスペースの数を数え、それに1を加えて、正しい単語数を取得します。どうすればそれができるか見てみましょう。
(Count Words)最初(Beginning)または最後にスペース(Spaces)のない単語を数える
セル内のテキストの最初または最後にスペースがない単語をカウントするには、LEN()
andSUBSTITUTE()
関数のみを使用します。
その場合、そうするための式は、になります=LEN(cell)-LEN(SUBSTITUTE(Cell," ",""))+1
。
簡単に理解すると、セル内の文字数を数え、スペースを含まないセル内の文字数で減算し、1を加算して単語数を求めます。
Excelシートの単語数を数えるには、各セルを数え、それらを合計して、シート全体の最終的な数を取得する必要があります。
読む(Read):MicrosoftExcelでDGET関数を使用する方法(How to use the DGET function in Microsoft Excel)。
(Count)最初(Beginning)と最後(End)にスペースがある単語を数える
セルの先頭と末尾にスペースがある単語をカウントするにはTRIM()
、数式に関数を含めます。
その場合、そうするための式は、になります=LEN(TRIM(Cell))-LEN(SUBSTITUTE(Cell," ",""))+1
。
シート全体の単語数を取得するには、すべてのセルに同じ数式を適用し、すべての数を加算して最終的な数を取得する必要があります。
これは、 Excel(Excel)シートで単語数を取得する方法です。エラーや誤算なしに数値を取得するには、より注意深く、注意深く、創造的である必要があります。最終的な数値を確定する前に、数式と関数を確認してください。(Check)
読む(Read):初心者のための10の最も役立つExcelのヒントとコツ(10 most useful Excel Tips and Tricks for beginners)
How to count words in Excel
You knоw hоw to count words in Word and Powerpoint. Have you ever wondered how you can count words on Microsoft Excel? Is there an option to count words or is there a formula to do so? In this guide, we will help you understand how to count words in an excel sheet with formulas easily. Let’s see what the formula to do so and understand it.
Functions to count words in Excel
Like Microsoft Word or Powerpoint, Excel doesn’t have a tool to count words. But there is a way to count the words. Though it is a complex process and works for only one cell at a time, we will get through it and make it work for a group of cells. To understand the formula to count words, we need to understand a few functions in the formula first. They are LEN()
, TRIM()
, and SUBSTITUTE()
.
- The
LEN()
function takes a cell and gives the number of characters that appear in the cell. It gives us the number of characters in a cell with the number of spaces included between the characters. - The
TRIM()
function gives the number of characters that appear in a cell cutting our white spaces at the beginning and the end of the text in the cell. - The
SUBSTITUTE()
function replaces a part of text or data with another piece of our choice. The syntax to do so is SUBSTITUTE(Cell,"old_text","new_text")
. Remember to put text in quotes in the formula always.
We use these three functions in a formula to get the word count.
How to count words in Excel
To count words in Excel, we will use the above functions that we learned. We use them together to give us a number that we want to know which is the word count. As Excel does not have a tool to count the number of words, we need to be more creative in using the functions to get the word count. To do so, we will count the number of characters in the cell using LEN()
function and then count the number of characters using the SUBSTITUTE()
function without spaces. Then, we add the difference between the two with 1 to get the word count.
In simple words, we count the number of spaces in a cell and add it with 1 to get the correct word count. Let’s see how we can do it.
Count Words without Spaces at the Beginning or End
To count the words without spaces at the beginning or at the end of the text in a cell, we use only LEN()
and SUBSTITUTE()
functions.
Then, the formula to do so would be, =LEN(cell)-LEN(SUBSTITUTE(Cell," ",""))+1
.
To understand it in simple terms, we are counting the number of characters in the cell and subtracting it with the number of characters in the cell without spaces, and adding it with 1 to get the word count.
To count the number of words in an Excel sheet, you have to count each cell and add them together to get a final count of the whole sheet.
Read: How to use the DGET function in Microsoft Excel.
Count words with Spaces at the Beginning and End
To count words with spaces at the beginning and end in a cell, we include the TRIM()
function in the formula.
Then, the formula to do so would be, =LEN(TRIM(Cell))-LEN(SUBSTITUTE(Cell," ",""))+1
.
To get the word count of the whole sheet, you have to apply the same formula to every cell and add all the counts to get a final number.
This is how we get the word count in an Excel sheet. We need to be more vigilant, careful, and creative to get the number without any errors or miscalculations. Check formulas and functions before concluding on a final number.
Read: 10 most useful Excel Tips and Tricks for beginners