Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() 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. Hi Griff, =LEN(A1) will give you the answer oldchippy :) -- oldchippy ------------------------------------------------------------------------ oldchippy's Profile: http://www.excelforum.com/member.php...o&userid=19907 View this thread: http://www.excelforum.com/showthread...hreadid=568283 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=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 "Griff" wrote in message ... 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 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
On excel, my formula will not calculate and add info into cell | Excel Worksheet Functions | |||
How to set number of characters within a cell in Excel 2003? | Excel Worksheet Functions | |||
Formula Problem - interrupted by #VALUE! in other cells!? | Excel Worksheet Functions | |||
How can i get an If formula in excel to edit another cell? | Excel Worksheet Functions |