Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I currentl have a formula:
=IF(C26="","",LEN(C26)-LEN(SUBSTITUTE(C26,";",""))+1) But I need to include IF(C26="-All Clubs",54) and am striking out. I need to be able to put the number 54 into the formula field (C27) if C26 contains "-All Clubs" and still have it count the ";" for all other input. Any suggestions? -- THANKS! Krista |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
see previous post.
-- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Krista" wrote in message ... I currentl have a formula: =IF(C26="","",LEN(C26)-LEN(SUBSTITUTE(C26,";",""))+1) But I need to include IF(C26="-All Clubs",54) and am striking out. I need to be able to put the number 54 into the formula field (C27) if C26 contains "-All Clubs" and still have it count the ";" for all other input. Any suggestions? -- THANKS! Krista |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=IF(C26="","",IF(C26="-All Clubs",54,LEN(C26)-LEN(SUBSTITUTE(C26,";",""))+1)) Biff "Krista" wrote in message ... I currentl have a formula: =IF(C26="","",LEN(C26)-LEN(SUBSTITUTE(C26,";",""))+1) But I need to include IF(C26="-All Clubs",54) and am striking out. I need to be able to put the number 54 into the formula field (C27) if C26 contains "-All Clubs" and still have it count the ";" for all other input. Any suggestions? -- THANKS! Krista |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Nice formula <g
-- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Biff" wrote in message ... Try this: =IF(C26="","",IF(C26="-All Clubs",54,LEN(C26)-LEN(SUBSTITUTE(C26,";",""))+1)) Biff "Krista" wrote in message ... I currentl have a formula: =IF(C26="","",LEN(C26)-LEN(SUBSTITUTE(C26,";",""))+1) But I need to include IF(C26="-All Clubs",54) and am striking out. I need to be able to put the number 54 into the formula field (C27) if C26 contains "-All Clubs" and still have it count the ";" for all other input. Any suggestions? -- THANKS! Krista |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
SQL concatenation statement | Excel Discussion (Misc queries) | |||
appending and IF statement to an existing IF statement | Excel Worksheet Functions | |||
SET statement tutorial | Excel Discussion (Misc queries) | |||
If statement | Excel Discussion (Misc queries) | |||
Do I need a sumif or sum of a vlookup formula? | Excel Worksheet Functions |