While working with Microsoft Excel, did you get any situation where you need to count the number of characters in a cell or string? I believe most of your answers are YES. In the said scenario “LEN” function will help you to find the solution. We will be learning the Microsoft Excel “LEN” in detail, so stay with us and continue reading…
=LEN(text)
text argument, is used for counting number of characters in available string.
LEN Function has only one argument i.e. text, which makes the function easy to apply and understand. We need to give the cell reference of the string to the text argument.
If cell reference is not correctly provided in the function, then it will give output as “#VALUE!” (Error). So always ensure that function parameters are correctly applied to get the appropriate results/output.
LEN function is very advantageous in many ways. It helps for the document where count of characters from an available string is required. Counting characters from an available string manually (one by one) in a report is very difficult and LEN Function helps to apply the function in large database at once and makes the work easy, saves time and increases efficiency.
– Number formatting will be ignored i.e. $10,000.00 output result will be 5 (for 10000) ignoring “$”/”,”/”.00” number formatting
– Space available in a string is counted as character
– Function should give output in “General” format, however if output is not as per the desired format then we need to change the cell format to “GENERAL”.
text argument, “Column A” contains strings and characters needs to be counted.
Explanation:
– Cell “A2” has string i.e. “Happiness” with total 9 characters as per function output in cell “B2
– Cell “A5” has string i.e. “Happiness + 2 spaces” that is why function output is 11 as per cell “B5”
– Cell “A9” has numeric value i.e. 10000 with number formatting, output returns value ignoring number formatting i.e. $/,/.00
Hope you learnt this Function,
Don’t forget to leave your valuable comments!
If you liked this article and want to learn more similar tricks, please Subscribe us or follow us on Social Media by clicking below buttons:
Remove Duplicates in Excel Highlight/Select the Column A, similar to shown in below screenshot: Go To “Data” tab on Menu Bar and click on “Remove Duplicates” as shown below: Once you click on “Remove Duplicates”,…
Introduction Welcome to this comprehensive guide on using Power Query in Excel to split data efficiently. In this tutorial, we’ll walk you through the step-by-step process of splitting columns, specifically focusing on splitting the name…
This guide shows three easy ways to make a histogram in Excel: using the built-in Histogram tool, formulas, or a PivotTable. Even though making charts is usually simple, histograms can be tricky. But in newer versions of Excel, it’s easy to create one in just a few steps. Let’s explore each method in detail.
In layman language, this chart divides the data into multiple range groups with same interval i.e. 1-5, 5-10… and then plot the data into these groups to find the distribution among these group. So that you may understand, what are the major areas which has large impact or your major data fall. This helps the user to understand the nature of your data
Watch Excel Tutorial Video – How To Create Dropdown List In Excel How to Create a Dropdown list in excel? Microsoft Excel is what most professionals are using for their day-to-day office. Creating a drop-down…
VBA Code to Count Color Cells With Conditional Formatting Have you ever got into situation in office where you need to count the cells with specific color in conditional formatted Excel sheet? If yes then…
Very well explained LEN function.