A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

COUNT THE NUMBER OF LETTERS INCLUDING SPACES IN A CELL?



 
 
Thread Tools Display Modes
  #1  
Old March 6th, 2006, 03:38 AM posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: n/a
Default COUNT THE NUMBER OF LETTERS INCLUDING SPACES IN A CELL?

Im currently creating codes for our inventory list. The system provider
mentioned that my codes can only have 30 characters including spaces and
symbols. Now I have my list but it will be easy for me if there is a function
which will help me count the number of characters in a cell. From there I
will be able to identify those codes which exceed 30 characters and modify my
list.

Thanks. It will be a great help.
  #2  
Old March 6th, 2006, 03:46 AM posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: n/a
Default COUNT THE NUMBER OF LETTERS INCLUDING SPACES IN A CELL?

Hello zurafz6,

You can use the LEN function. This counts the number of charcters in a cell.

=LEN(Cell)

Judith

"zurafz6" wrote:

Im currently creating codes for our inventory list. The system provider
mentioned that my codes can only have 30 characters including spaces and
symbols. Now I have my list but it will be easy for me if there is a function
which will help me count the number of characters in a cell. From there I
will be able to identify those codes which exceed 30 characters and modify my
list.

Thanks. It will be a great help.

  #3  
Old March 6th, 2006, 03:46 AM posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: n/a
Default COUNT THE NUMBER OF LETTERS INCLUDING SPACES IN A CELL?

Try this:


=LEN(A1)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"zurafz6" wrote in message
...
Im currently creating codes for our inventory list. The system provider
mentioned that my codes can only have 30 characters including spaces and
symbols. Now I have my list but it will be easy for me if there is a

function
which will help me count the number of characters in a cell. From there I
will be able to identify those codes which exceed 30 characters and modify

my
list.

Thanks. It will be a great help.


  #4  
Old March 6th, 2006, 03:48 AM posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: n/a
Default COUNT THE NUMBER OF LETTERS INCLUDING SPACES IN A CELL?

Hi!

=LEN(A1)

You could also set it up to reject codes longer than 30 characters, if you
were so inclined.

Biff

"zurafz6" wrote in message
...
Im currently creating codes for our inventory list. The system provider
mentioned that my codes can only have 30 characters including spaces and
symbols. Now I have my list but it will be easy for me if there is a
function
which will help me count the number of characters in a cell. From there I
will be able to identify those codes which exceed 30 characters and modify
my
list.

Thanks. It will be a great help.



  #5  
Old March 6th, 2006, 07:17 AM posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: n/a
Default COUNT THE NUMBER OF LETTERS INCLUDING SPACES IN A CELL?

Hi Biff
Thanks it helps. How do I then formulate to reject codes more than 30. What
is the formula and will it help me identify. Thanks again.

"Biff" wrote:

Hi!

=LEN(A1)

You could also set it up to reject codes longer than 30 characters, if you
were so inclined.

Biff

"zurafz6" wrote in message
...
Im currently creating codes for our inventory list. The system provider
mentioned that my codes can only have 30 characters including spaces and
symbols. Now I have my list but it will be easy for me if there is a
function
which will help me count the number of characters in a cell. From there I
will be able to identify those codes which exceed 30 characters and modify
my
list.

Thanks. It will be a great help.




  #6  
Old March 6th, 2006, 07:17 AM posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: n/a
Default COUNT THE NUMBER OF LETTERS INCLUDING SPACES IN A CELL?

Thanks. It works.

"Ragdyer" wrote:

Try this:


=LEN(A1)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"zurafz6" wrote in message
...
Im currently creating codes for our inventory list. The system provider
mentioned that my codes can only have 30 characters including spaces and
symbols. Now I have my list but it will be easy for me if there is a

function
which will help me count the number of characters in a cell. From there I
will be able to identify those codes which exceed 30 characters and modify

my
list.

Thanks. It will be a great help.



  #7  
Old March 6th, 2006, 07:17 AM posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: n/a
Default COUNT THE NUMBER OF LETTERS INCLUDING SPACES IN A CELL?

Thanx a million. It helps.

"JudithJubilee" wrote:

Hello zurafz6,

You can use the LEN function. This counts the number of charcters in a cell.

=LEN(Cell)

Judith

"zurafz6" wrote:

Im currently creating codes for our inventory list. The system provider
mentioned that my codes can only have 30 characters including spaces and
symbols. Now I have my list but it will be easy for me if there is a function
which will help me count the number of characters in a cell. From there I
will be able to identify those codes which exceed 30 characters and modify my
list.

Thanks. It will be a great help.

  #8  
Old March 6th, 2006, 07:53 AM posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: n/a
Default COUNT THE NUMBER OF LETTERS INCLUDING SPACES IN A CELL?

Hi!

It would not help to identify as that would be "after the fact". It will
prevent** you from entering codes longer than 30 characters in the first
place.

Select the range of cells in question.
Assume that range is A1:A1
Goto DataValidation
Allow: Text length
Data: Less than or equal to
Maximum: 30
OK

** - prevent means, if the codes are manually typed in. Validated cells can
still be pasted into or dragged to.

Biff

"zurafz6" wrote in message
news
Hi Biff
Thanks it helps. How do I then formulate to reject codes more than 30.
What
is the formula and will it help me identify. Thanks again.

"Biff" wrote:

Hi!

=LEN(A1)

You could also set it up to reject codes longer than 30 characters, if
you
were so inclined.

Biff

"zurafz6" wrote in message
...
Im currently creating codes for our inventory list. The system provider
mentioned that my codes can only have 30 characters including spaces
and
symbols. Now I have my list but it will be easy for me if there is a
function
which will help me count the number of characters in a cell. From there
I
will be able to identify those codes which exceed 30 characters and
modify
my
list.

Thanks. It will be a great help.






 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Microsoft Access Limits (file size, table records, users) Mike General Discussion 4 November 4th, 2005 03:01 AM
Help to append flat file table to two tables Victoriya F via AccessMonster.com Running & Setting Up Queries 11 September 26th, 2005 05:30 PM
copying cell names Al General Discussion 3 August 11th, 2005 03:01 PM
Count the number of specific values in a cell Kevin Worksheet Functions 4 June 3rd, 2005 04:20 AM


All times are GMT +1. The time now is 01:34 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.