Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need a function formula that will count text entries in 2 columns. i.e. B &
D and C & D The spread sheet is thus: A B C D alpha x x Beta Charlie x x x Delta x Echo x Result 2 1 I have tried Countif with embeding AND but get error message. and Sumproduct(B2:B5="*",D2:D5="*") but no luck there either. Please help. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Maybe something like this?
=SUMPRODUCT(--(ISTEXT(B2:B5)),--(ISTEXT(D2:D5))) -- Regards, Peo Sjoblom "earlfj" wrote in message ... I need a function formula that will count text entries in 2 columns. i.e. B & D and C & D The spread sheet is thus: A B C D alpha x x Beta Charlie x x x Delta x Echo x Result 2 1 I have tried Countif with embeding AND but get error message. and Sumproduct(B2:B5="*",D2:D5="*") but no luck there either. Please help. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Or
=SUMPRODUCT(SIGN(ISTEXT(B2:B5)+(ISTEXT(C2:C5))),--(ISTEXT(D2:D5))) if you want to count "(B or C) and D". Regards, Bernd |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
COUNTIF | Excel Worksheet Functions | |||
How do I use a countif function according to two other countif fu. | Excel Worksheet Functions | |||
edit this =COUNTIF(A1:F16,"*1-2*")+COUNTIF(A1:F16,"*2-1*") | Excel Discussion (Misc queries) | |||
COUNTIF or not to COUNTIF on a range in another sheet | Excel Worksheet Functions | |||
COUNTIF in one colum then COUNTIF in another...??? | Excel Worksheet Functions |