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  

How to count number of characters in xl cell for publisher merge



 
 
Thread Tools Display Modes
  #1  
Old August 31st, 2008, 09:19 PM posted to microsoft.public.excel.worksheet.functions
msloell
external usenet poster
 
Posts: 2
Default How to count number of characters in xl cell for publisher merge

I am doing a catalog merge in publisher. Data is in XL. Publisher has 255
character limit on merged info. How do I count the characters before I
execute the merge?
  #2  
Old August 31st, 2008, 09:26 PM posted to microsoft.public.excel.worksheet.functions
T. Valko
external usenet poster
 
Posts: 15,759
Default How to count number of characters in xl cell for publisher merge

Use the LEN (Length) function:

=LEN(A1)


--
Biff
Microsoft Excel MVP


"msloell" wrote in message
...
I am doing a catalog merge in publisher. Data is in XL. Publisher has 255
character limit on merged info. How do I count the characters before I
execute the merge?



  #3  
Old October 21st, 2009, 11:10 PM posted to microsoft.public.excel.worksheet.functions
matt hinkle
external usenet poster
 
Posts: 1
Default function - LEN

Hi Biff!
using the =len(a1) works fine unless the cell is empty/blank; it returns count of 1 for blank cell--how do I account for these? I assume it would be an if statement of some kind??



T. Valko wrote:

How to count number of characters in xl cell for publisher merge
31-Aug-08

Use the LEN (Length) function:

=LEN(A1)


--
Biff
Microsoft Excel MVP

Previous Posts In This Thread:

On Sunday, August 31, 2008 4:19 PM
msloel wrote:

How to count number of characters in xl cell for publisher merge
I am doing a catalog merge in publisher. Data is in XL. Publisher has 255
character limit on merged info. How do I count the characters before I
execute the merge?

On Sunday, August 31, 2008 4:26 PM
T. Valko wrote:

How to count number of characters in xl cell for publisher merge
Use the LEN (Length) function:

=LEN(A1)


--
Biff
Microsoft Excel MVP

EggHeadCafe - Software Developer Portal of Choice
ADO.NET 3.5 Cookbook by Bill Hamilton [O'Reilly]
http://www.eggheadcafe.com/tutorials...book-by-b.aspx
  #4  
Old October 21st, 2009, 11:27 PM posted to microsoft.public.excel.worksheet.functions
Dave Peterson
external usenet poster
 
Posts: 19,791
Default function - LEN

Your cell isn't empty.

Try selecting that cell and hitting the delete key on the keyboard.

What happens to that =len() formula?

If it stays 1, then maybe you have calculation set to manual.
Tools|Options|calculation tab is where you'd change it in xl2003 menus.

My guess is that you have some white space character (space bar or HTML
non-breaking space????) in that cell.



matt, hinkle wrote:

Hi Biff!
using the =len(a1) works fine unless the cell is empty/blank; it returns count of 1 for blank cell--how do I account for these? I assume it would be an if statement of some kind??

T. Valko wrote:

How to count number of characters in xl cell for publisher merge
31-Aug-08

Use the LEN (Length) function:

=LEN(A1)

--
Biff
Microsoft Excel MVP

Previous Posts In This Thread:

On Sunday, August 31, 2008 4:19 PM
msloel wrote:

How to count number of characters in xl cell for publisher merge
I am doing a catalog merge in publisher. Data is in XL. Publisher has 255
character limit on merged info. How do I count the characters before I
execute the merge?

On Sunday, August 31, 2008 4:26 PM
T. Valko wrote:

How to count number of characters in xl cell for publisher merge
Use the LEN (Length) function:

=LEN(A1)

--
Biff
Microsoft Excel MVP

EggHeadCafe - Software Developer Portal of Choice
ADO.NET 3.5 Cookbook by Bill Hamilton [O'Reilly]
http://www.eggheadcafe.com/tutorials...book-by-b.aspx


--

Dave Peterson
  #5  
Old October 21st, 2009, 11:31 PM posted to microsoft.public.excel.worksheet.functions
David Biddulph
external usenet poster
 
Posts: 8,714
Default function - LEN

Wrong, Matt! LEN does not return 1 for an empty or blank cell.
For either a completely empty cell or a cell with the empty string ="", LEN
returns zero.
If you are seeing a LEN of 1, you do not have a blank or empty cell; you
have a character in there.
You can see which character with =CODE(A1). If it returns 32, you have a
space, if it returns 160, you have a non-breaking space.
--
David Biddulph

matt hinkle wrote:
Hi Biff!
using the =len(a1) works fine unless the cell is empty/blank; it
returns count of 1 for blank cell--how do I account for these? I
assume it would be an if statement of some kind??



T. Valko wrote:

How to count number of characters in xl cell for publisher merge
31-Aug-08

Use the LEN (Length) function:

=LEN(A1)


--
Biff
Microsoft Excel MVP

Previous Posts In This Thread:

On Sunday, August 31, 2008 4:19 PM
msloel wrote:

How to count number of characters in xl cell for publisher merge
I am doing a catalog merge in publisher. Data is in XL. Publisher has
255
character limit on merged info. How do I count the characters before I
execute the merge?

On Sunday, August 31, 2008 4:26 PM
T. Valko wrote:

How to count number of characters in xl cell for publisher merge
Use the LEN (Length) function:

=LEN(A1)



  #6  
Old October 21st, 2009, 11:32 PM posted to microsoft.public.excel.worksheet.functions
David Biddulph
external usenet poster
 
Posts: 8,714
Default function - LEN

Wrong, Matt! LEN does not return 1 for an empty or blank cell.
For either a completely empty cell or a cell with the empty string ="", LEN
returns zero.
If you are seeing a LEN of 1, you do not have a blank or empty cell; you
have a character in there.
You can see which character with =CODE(A1). If it returns 32, you have a
space, if it returns 160, you have a non-breaking space.
--
David Biddulph

matt hinkle wrote:
Hi Biff!
using the =len(a1) works fine unless the cell is empty/blank; it
returns count of 1 for blank cell--how do I account for these? I
assume it would be an if statement of some kind??



T. Valko wrote:

How to count number of characters in xl cell for publisher merge
31-Aug-08

Use the LEN (Length) function:

=LEN(A1)


--
Biff
Microsoft Excel MVP

Previous Posts In This Thread:

On Sunday, August 31, 2008 4:19 PM
msloel wrote:

How to count number of characters in xl cell for publisher merge
I am doing a catalog merge in publisher. Data is in XL. Publisher has
255
character limit on merged info. How do I count the characters before I
execute the merge?

On Sunday, August 31, 2008 4:26 PM
T. Valko wrote:

How to count number of characters in xl cell for publisher merge
Use the LEN (Length) function:

=LEN(A1)




  #7  
Old October 21st, 2009, 11:56 PM posted to microsoft.public.excel.worksheet.functions
Pete_UK
external usenet poster
 
Posts: 8,780
Default function - LEN

How did you know his name was Matt, David?

Pete

On Oct 21, 11:32*pm, "David Biddulph" groups [at] biddulph.org.uk
wrote:
Wrong, Matt! *LEN does not return 1 for an empty or blank cell.
For either a completely empty cell or a cell with the empty string ="", LEN
returns zero.
If you are seeing a LEN of 1, you do not have a blank or empty cell; *you
have a character in there.
You can see which character with =CODE(A1). *If it returns 32, you have a
space, if it returns 160, you have a non-breaking space.
--
David Biddulph



matt hinkle wrote:
Hi Biff!
using the =len(a1) works fine unless the cell is empty/blank; it
returns count of 1 for blank cell--how do I account for these? I
assume it would be an if statement of some kind??


T. Valko wrote:


How to count number of characters in xl cell for publisher merge
31-Aug-08


Use the LEN (Length) function:


=LEN(A1)


--
Biff
Microsoft Excel MVP


Previous Posts In This Thread:


On Sunday, August 31, 2008 4:19 PM
msloel wrote:


How to count number of characters in xl cell for publisher merge
I am doing a catalog merge in publisher. Data is in XL. Publisher has
255
character limit on merged info. How do I count the characters before I
execute the merge?


On Sunday, August 31, 2008 4:26 PM
T. Valko wrote:


How to count number of characters in xl cell for publisher merge
Use the LEN (Length) function:


=LEN(A1)- Hide quoted text -


- Show quoted text -


  #8  
Old October 22nd, 2009, 12:02 AM posted to microsoft.public.excel.worksheet.functions
Max
external usenet poster
 
Posts: 8,574
Default function - LEN

using the =len(a1) works fine unless the cell is empty/blank;
.. it returns count of 1 for blank cell


The result should be zero, not 1
You probably have an invisible white space which is causing the error
Try usingTRIM: =LEN(TRIM(A1))
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:27,000 Files:200 Subscribers:70
xdemechanik
---


  #9  
Old October 22nd, 2009, 12:24 AM posted to microsoft.public.excel.worksheet.functions
David Biddulph
external usenet poster
 
Posts: 8,714
Default function - LEN

Well, Pete, I was working from the part that said: "matt hinkle wrote:"
--
David Biddulph

Pete_UK wrote:
How did you know his name was Matt, David?

Pete

On Oct 21, 11:32 pm, "David Biddulph" groups [at] biddulph.org.uk
wrote:
Wrong, Matt! LEN does not return 1 for an empty or blank cell.
For either a completely empty cell or a cell with the empty string
="", LEN returns zero.
If you are seeing a LEN of 1, you do not have a blank or empty cell;
you have a character in there.
You can see which character with =CODE(A1). If it returns 32, you
have a space, if it returns 160, you have a non-breaking space.
--
David Biddulph



matt hinkle wrote:
Hi Biff!
using the =len(a1) works fine unless the cell is empty/blank; it
returns count of 1 for blank cell--how do I account for these? I
assume it would be an if statement of some kind??


T. Valko wrote:


How to count number of characters in xl cell for publisher merge
31-Aug-08


Use the LEN (Length) function:


=LEN(A1)


--
Biff
Microsoft Excel MVP


Previous Posts In This Thread:


On Sunday, August 31, 2008 4:19 PM
msloel wrote:


How to count number of characters in xl cell for publisher merge
I am doing a catalog merge in publisher. Data is in XL. Publisher
has 255
character limit on merged info. How do I count the characters
before I execute the merge?


On Sunday, August 31, 2008 4:26 PM
T. Valko wrote:


How to count number of characters in xl cell for publisher merge
Use the LEN (Length) function:


=LEN(A1)- Hide quoted text -


- Show quoted text -



  #10  
Old October 22nd, 2009, 12:30 AM posted to microsoft.public.excel.worksheet.functions
Visitor[_3_]
external usenet poster
 
Posts: 2
Default function - LEN

"Pete_UK" wrote:
How did you know his name was Matt, David?


In Google Groups, click on Hide Options to see the From header record.


 




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


All times are GMT +1. The time now is 12:53 AM.


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