F Falinaicare Member Mar 7, 2024 #1 To Whom It May Concern, I have attached the excel document for you to guide me on the countif. Is there any idea that I can count 2 values in one cell? If yes, please share here. Hope to hear from you soon. Thanks. Attachments Count the same value in a cell.xlsx 9 KB · Views: 14
To Whom It May Concern, I have attached the excel document for you to guide me on the countif. Is there any idea that I can count 2 values in one cell? If yes, please share here. Hope to hear from you soon. Thanks.
Juniad Active Member Mar 7, 2024 #2 Copy and paste the formula in cell A10 - for Office 365 =SUM(IF(MID(SUBSTITUTE(B10,"ABC","!"),SEQUENCE(LEN(B10)),1)="!",1,0))
Copy and paste the formula in cell A10 - for Office 365 =SUM(IF(MID(SUBSTITUTE(B10,"ABC","!"),SEQUENCE(LEN(B10)),1)="!",1,0))
V vletm Excel Ninja Mar 7, 2024 #3 Falinaicare=IF(FIND(CHAR(10),B10)>1,2,1) Note: My Excel finds that char(10)
Monty Well-Known Member Mar 8, 2024 #4 Try This Code: =COUNTIF(A1:A10, "*value1*") + COUNTIF(A1:A10, "*value2*")
F Falinaicare Member Mar 13, 2024 #5 Dear Junaid, vletm and Monty, Appreciated of all your excel assistance.