Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi there, I need someone help to do the following:
Column A Column B 1 a A 2 B b 3 C C 4 c c 5 D e =COUNTIF(A1:B5,"c") will give a result (4), but I only want to count the lower case c which should give me a result (2) instead. Thanks. Awaiting for an answer. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=SUMPRODUCT(--(EXACT(A1:B5,"c"))) -- Biff Microsoft Excel MVP "Yvonne" wrote in message ... Hi there, I need someone help to do the following: Column A Column B 1 a A 2 B b 3 C C 4 c c 5 D e =COUNTIF(A1:B5,"c") will give a result (4), but I only want to count the lower case c which should give me a result (2) instead. Thanks. Awaiting for an answer. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Thanks Valko, your method works best!!!!! "T. Valko" wrote: Try this: =SUMPRODUCT(--(EXACT(A1:B5,"c"))) -- Biff Microsoft Excel MVP "Yvonne" wrote in message ... Hi there, I need someone help to do the following: Column A Column B 1 a A 2 B b 3 C C 4 c c 5 D e =COUNTIF(A1:B5,"c") will give a result (4), but I only want to count the lower case c which should give me a result (2) instead. Thanks. Awaiting for an answer. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You're welcome. Thanks for the feedback!
-- Biff Microsoft Excel MVP "Yvonne" wrote in message ... Thanks Valko, your method works best!!!!! "T. Valko" wrote: Try this: =SUMPRODUCT(--(EXACT(A1:B5,"c"))) -- Biff Microsoft Excel MVP "Yvonne" wrote in message ... Hi there, I need someone help to do the following: Column A Column B 1 a A 2 B b 3 C C 4 c c 5 D e =COUNTIF(A1:B5,"c") will give a result (4), but I only want to count the lower case c which should give me a result (2) instead. Thanks. Awaiting for an answer. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can use this array* formula
=SUM(EXACT("c",A1:B5)*1) *Use Ctrl+Shift+Enter to confirm formoula, not just Enter. -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "Yvonne" wrote: Hi there, I need someone help to do the following: Column A Column B 1 a A 2 B b 3 C C 4 c c 5 D e =COUNTIF(A1:B5,"c") will give a result (4), but I only want to count the lower case c which should give me a result (2) instead. Thanks. Awaiting for an answer. |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Thanks Luke, so amazing. "Luke M" wrote: You can use this array* formula =SUM(EXACT("c",A1:B5)*1) *Use Ctrl+Shift+Enter to confirm formoula, not just Enter. -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "Yvonne" wrote: Hi there, I need someone help to do the following: Column A Column B 1 a A 2 B b 3 C C 4 c c 5 D e =COUNTIF(A1:B5,"c") will give a result (4), but I only want to count the lower case c which should give me a result (2) instead. Thanks. Awaiting for an answer. |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=SUMPRODUCT(--(CODE(A1:B5)=99))
-- Gary''s Student - gsnu200848 "Yvonne" wrote: Hi there, I need someone help to do the following: Column A Column B 1 a A 2 B b 3 C C 4 c c 5 D e =COUNTIF(A1:B5,"c") will give a result (4), but I only want to count the lower case c which should give me a result (2) instead. Thanks. Awaiting for an answer. |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Gary's Student,
It works. Thanks. What's 99 stands for? "Gary''s Student" wrote: =SUMPRODUCT(--(CODE(A1:B5)=99)) -- Gary''s Student - gsnu200848 "Yvonne" wrote: Hi there, I need someone help to do the following: Column A Column B 1 a A 2 B b 3 C C 4 c c 5 D e =COUNTIF(A1:B5,"c") will give a result (4), but I only want to count the lower case c which should give me a result (2) instead. Thanks. Awaiting for an answer. |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"99" is ASCII code for "c".
Yvonne wrote: Hi Gary's Student, It works. Thanks. What's 99 stands for? "Gary''s Student" wrote: =SUMPRODUCT(--(CODE(A1:B5)=99)) -- Gary''s Student - gsnu200848 "Yvonne" wrote: Hi there, I need someone help to do the following: Column A Column B 1 a A 2 B b 3 C C 4 c c 5 D e =COUNTIF(A1:B5,"c") will give a result (4), but I only want to count the lower case c which should give me a result (2) instead. Thanks. Awaiting for an answer. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Changing multiple cell text from lower case to upper case | Excel Discussion (Misc queries) | |||
how do I count only lower case "x" and exclude upper case "X" | Excel Worksheet Functions | |||
Count if Lower case | Excel Worksheet Functions | |||
Change the text from lower case to upper case in an Excel work boo | Excel Discussion (Misc queries) | |||
Count the occurance of upper or lower case letters | Excel Worksheet Functions |