Help Needed - Formula

Z

zimmeml2

I need a formula that will count the TOTAL number of characters in an
individual cell - that can then be applied to a range of cells to find
all cells that contain more characters than a specified number.


For example, we need to search approx. 80,000 records to find all cells
that contain more than 25 characters.

We are working in Excel 2000.

Any help would be greatly appreciated!
 
J

Jason Morin

Use the LEN function.

HTH
Jason
Atlanta, GA
-----Original Message-----

I need a formula that will count the TOTAL number of characters in an
individual cell - that can then be applied to a range of cells to find
all cells that contain more characters than a specified number.


For example, we need to search approx. 80,000 records to find all cells
that contain more than 25 characters.

We are working in Excel 2000.

Any help would be greatly appreciated!


------------------------------------------------
[/url]
~~View and post usenet messages directly from http://www.ExcelForum.com/

~~Now Available: Financial Statements.xls, a step by step
guide to creating financial statements
 
A

Andy B

Hi

If you want it in one step you could use

=LEN(A2)>25

This would give you a TRUE or FALSE

Andy.

zimmeml2 said:
I need a formula that will count the TOTAL number of characters in an
individual cell - that can then be applied to a range of cells to find
all cells that contain more characters than a specified number.


For example, we need to search approx. 80,000 records to find all cells
that contain more than 25 characters.

We are working in Excel 2000.

Any help would be greatly appreciated!
creating financial statements
 
C

Charles Maxson

Adding one final approach to get your final answer:

1) Enter a formula such as this =SUM(IF(LEN(A1:K500)>24,1,0))
(Note it will return an #Value error)

2) Make it an array formula by:
a) Edit the formula {F2}
b) While in edit mode press {Ctrl}+{Shift}+{Enter}

--
Charles
www.officezealot.com


Andy B said:
Hi

If you want it in one step you could use

=LEN(A2)>25

This would give you a TRUE or FALSE

Andy.

zimmeml2 said:
I need a formula that will count the TOTAL number of characters in an
individual cell - that can then be applied to a range of cells to find
all cells that contain more characters than a specified number.


For example, we need to search approx. 80,000 records to find all cells
that contain more than 25 characters.

We are working in Excel 2000.

Any help would be greatly appreciated!


------------------------------------------------
[/url]


~~Now Available: Financial Statements.xls, a step by step guide to
creating financial statements
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top