ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   determine if ea value in a col has more than 20 chars (https://www.excelbanter.com/excel-discussion-misc-queries/77724-determine-if-ea-value-col-has-more-than-20-chars.html)

pmms

determine if ea value in a col has more than 20 chars
 
I know I have to use LEN in a loop but I don't know VBA and need this info
asap. can you help?

Don Guillett

determine if ea value in a col has more than 20 chars
 
for each c in range("a2:a22")
if len(c)20 then msgbox "Bingo"
next c

--
Don Guillett
SalesAid Software

"pmms" wrote in message
...
I know I have to use LEN in a loop but I don't know VBA and need this info
asap. can you help?




Ron Coderre

determine if ea value in a col has more than 20 chars
 
Try something like this:

For a list of text values, or blanks, in A10: A20

A1: =SUMPRODUCT(--(LEN(A10:A20)20))=ROWS(A10:A20)

That formula returns TRUE if all of the referenced cells contain values and
the length of those values is greater than 20 characters. It returns FALSE
if any of the cells is blank or has a length of 20 characters or less.

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro


"pmms" wrote:

I know I have to use LEN in a loop but I don't know VBA and need this info
asap. can you help?



All times are GMT +1. The time now is 08:46 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com