+ Reply to Thread
Results 1 to 4 of 4

A formula to count characters in an Excel cell?

  1. #1
    Griff
    Guest

    A formula to count characters in an Excel cell?

    Need a formula to count the total number of characters within a spreadsheet
    cell as opposed to the number of words. All help much appreciated.

  2. #2
    Forum Expert oldchippy's Avatar
    Join Date
    02-14-2005
    Location
    Worcester, UK
    MS-Off Ver
    Excel 2007 (Home)
    Posts
    7,097

    Thumbs up

    Quote Originally Posted by Griff
    Need a formula to count the total number of characters within a spreadsheet
    cell as opposed to the number of words. All help much appreciated.
    Hi Griff,

    =LEN(A1)

    will give you the answer

    oldchippy

    PS - If you have spaces either before of after and you do not wish to count these

    =LEN(TRIM(A1))
    Last edited by oldchippy; 08-04-2006 at 08:19 AM.

  3. #3
    Pete_UK
    Guest

    Re: A formula to count characters in an Excel cell?

    Try this:

    =LEN(A1)

    Hope this helps.

    Pete

    Griff wrote:
    > Need a formula to count the total number of characters within a spreadsheet
    > cell as opposed to the number of words. All help much appreciated.



  4. #4
    Don Guillett
    Guest

    Re: A formula to count characters in an Excel cell?

    =Len(h6)
    =LEN(SUBSTITUTE(H6," ",""))

    Sub cc()
    'total characters
    MsgBox Len(Range("h6"))
    'total not counting spaces
    MsgBox Len(Replace(Range("h6"), " ", ""))
    End Sub

    --
    Don Guillett
    SalesAid Software
    [email protected]
    "Griff" <[email protected]> wrote in message
    news:[email protected]...
    > Need a formula to count the total number of characters within a
    > spreadsheet
    > cell as opposed to the number of words. All help much appreciated.




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1