excel count "√"

kelvin_9

Active Member
Joined
Mar 6, 2015
Messages
460
Office Version
  1. 2019
greeting to all

wondering is there any other formula will be more effiency and be better than mine in below which i am using?
i need a formula in cell B3 to count how many "√" in range d3, f3, h3......... so on

Excel Formula:
=SUM(COUNTIF(INDIRECT({"d3","f3","h3","j3","l3","n3","p3","r3","t3","v3","x3","z3"}),"√"))

thanks for your guidance
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
How about
Excel Formula:
=SUMPRODUCT((D3:Z3="√")*(MOD(COLUMN(D3:Z3),2)=0))
 
Upvote 0
Could that symbol appear in the alternating cells or will it just appear in those cells specifically?
 
Upvote 0
How about
Excel Formula:
=SUMPRODUCT((D3:Z3="√")*(MOD(COLUMN(D3:Z3),2)=0))
thank you very much for your reply, Fluff

can this apply to C3 with range e3, g3, i3.........aa3

thank you very much for your guidance

statistics 2024.xlsx
BCDEFGHIJK
1COUNT (SCHEDULDED)COUNT (ACTUAL)1234
2scheuldedactualscheuldedactualscheuldedactualscheuldedactual
340XX
NIGHT
Cell Formulas
RangeFormula
B3B3=SUMPRODUCT((D3:Z3="√")*(MOD(COLUMN(D3:Z3),2)=0))
C3C3=SUMPRODUCT((D3:Z3="x")*(MOD(COLUMN(D3:Z3),2)=0))
 
Upvote 0
Could that symbol appear in the alternating cells or will it just appear in those cells specifically?
thank you very much for your reply, Scott Huish

those cells only, so that i want to calculate how many "√" and "X" return in cell B3 and C3

statistics 2024.xlsx
BCDEFGHIJK
1COUNT (SCHEDULDED)COUNT (ACTUAL)1234
2scheuldedactualscheuldedactualscheuldedactualscheuldedactual
3XX
NIGHT
 
Upvote 0
How about
Excel Formula:
=SUMPRODUCT((D3:Z3="√")*(MOD(COLUMN(D3:Z3),2)=1))
 
Upvote 0
I fixed the spelling of scheduled, but perhaps:
=SUMPRODUCT(--(D3:Z3="√"),--(D2:Z2="scheduled"))
 
Upvote 0
I fixed the spelling of scheduled, but perhaps:
=SUMPRODUCT(--(D3:Z3="√"),--(D2:Z2="scheduled"))
thank you very much for your reply, Scott Huish

xdxdddd, the spelling:p
this is perfect

thank you very much for your guidance 🤝
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,221,418
Messages
6,159,795
Members
451,589
Latest member
Harold14

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top