Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am Working with range A1:A15. I would like to count how many times the
value (w) appears in this range. The formula would be in A16 Thank for your help |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=COUNTIF(A1:A15,"w")
On 12 Gru, 16:23, Jake wrote: I am Working with range A1:A15. I would like to count how many times the value (w) appears in this range. The formula would be in A16 Thank for your help |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=COUNTIF(A1:A15,"w")
-- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "Jake" wrote: I am Working with range A1:A15. I would like to count how many times the value (w) appears in this range. The formula would be in A16 Thank for your help |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Great straight forward answer. Thank you to everyone who responded
"Luke M" wrote: =COUNTIF(A1:A15,"w") -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "Jake" wrote: I am Working with range A1:A15. I would like to count how many times the value (w) appears in this range. The formula would be in A16 Thank for your help |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Jake wrote:
I am Working with range A1:A15. I would like to count how many times the value (w) appears in this range. The formula would be in A16 Thank for your help Put this data in A1:A15: down, DOWN, now, NOW, w, W, win, WIN, wow, WOW, www, WWW, AAA, BBB, CCC Put w in B1. Depending upon what you want, use one of the formulas below (make sure to commit the array-formulas with CTRL+SHIFT+ENTER). 1. Exact case as entire cell value (result = 1) =SUM(--EXACT(A1:A15,B1)) *** array-formula *** 2. Either case as entire cell value (result = 2) =COUNTIF(A1:A15,B1) 3. Starting with exact case (result = 4) =SUM(--EXACT(LEFT(A1:A15,1),B1)) *** array-formula *** 4. Contains exact case (result = 6) =COUNT(--(FIND(B1,A1:A15)0)) *** array-formula *** 5. Starting with either case (result = 8) =SUM(--(LEFT(A1:A15,1)="w")) *** array-formula *** 6. Total occurrences of exact case (result = 9) =SUM(LEN(A1:A15))-SUM(LEN(SUBSTITUTE(A1:A15,B1,""))) *** array-formula *** 7. Contains either case (result = 12) =COUNTIF(A1:A15,"*"&B1&"*") 8. Total occurrences of either case (result = 18) =SUM(LEN(A1:A15))-SUM(LEN(SUBSTITUTE(SUBSTITUTE(A1:A15,LOWER(B1),"") ,UPPER(B1),""))) *** array-formula *** |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
wow!
On 12 Gru, 18:27, Glenn wrote: Jake wrote: I am Working with range A1:A15. I would like to count how many times the value (w) appears in this range. The formula would be in A16 Thank for your help Put this data in A1:A15: down, DOWN, now, NOW, w, W, win, WIN, wow, WOW, www, WWW, AAA, BBB, CCC Put w in B1. *Depending upon what you want, use one of the formulas below (make sure to commit the array-formulas with CTRL+SHIFT+ENTER). 1. Exact case as entire cell value (result = 1) =SUM(--EXACT(A1:A15,B1)) *** array-formula *** 2. Either case as entire cell value (result = 2) =COUNTIF(A1:A15,B1) 3. Starting with exact case (result = 4) =SUM(--EXACT(LEFT(A1:A15,1),B1)) *** array-formula *** 4. *Contains exact case (result = 6) =COUNT(--(FIND(B1,A1:A15)0)) *** array-formula *** 5. Starting with either case (result = 8) =SUM(--(LEFT(A1:A15,1)="w")) *** array-formula *** 6. Total occurrences of exact case (result = 9) =SUM(LEN(A1:A15))-SUM(LEN(SUBSTITUTE(A1:A15,B1,""))) *** array-formula *** 7. *Contains either case (result = 12) =COUNTIF(A1:A15,"*"&B1&"*") 8. Total occurrences of either case (result = 18) =SUM(LEN(A1:A15))-SUM(LEN(SUBSTITUTE(SUBSTITUTE(A1:A15,LOWER(B1),"") ,UPPER(*B1),""))) *** array-formula *** |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
counting two different values | Excel Discussion (Misc queries) | |||
Counting values with IF value? | Excel Worksheet Functions | |||
counting rows with same values for multiple values | New Users to Excel | |||
Counting rows, then counting values. | Excel Discussion (Misc queries) | |||
Counting values between 70 and 140 | Excel Worksheet Functions |