How to count cells containing specific text, when cell includes list of text?

sammybme

New Member
Joined
Feb 17, 2015
Messages
1
I'm trying to count the number of decisions by application in a data set. What formula should I use? I tried a countifs but could not figure out how write out how to call out one application by name. I have a list of a hundred apps so doing this using a cell reference rather than typing "text" would be best.

My data set indicates decisions made in one cell e.g. "live, undecided, wish list, not implementing". There is only one decision listed in each cell. Applications impacted are listed in another cell. The cell that lists applications has multiple items listed, e.g. "apple, banana, orange, pear". I want a count by application of the decisions made.

Data set looks like this...

EnhancementDecisionApplication impacted
option 1not implementingapple, banana, pear
option 2...livepear, mango

<TBODY>
</TBODY>



I'm trying to fill in this table...
Application </SPAN>Live</SPAN>Wish List</SPAN>Not Implementing</SPAN>Undecided</SPAN>
Apple? ? </SPAN>? ?
Banana? ? </SPAN>? ?
Pear? ? </SPAN>? ?

<TBODY>
</TBODY><COLGROUP><COL><COL span=4></COLGROUP>
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
ABCDEFG
1EnhancementDecisionApplication impactedAppleBananaPearMango
2option 1not implementingapple, banana, pear18160
3option 2livepear, mango0017
4option 3Wish Listpear, mango, pear0017
5option 4Undecidedpear0010
6
7
8ApplicationliveWish Listnot implementingUndecided
9Apple0010
10Banana0010
11Pear1111
12Mango1100

<tbody>
</tbody>

<tbody>
</tbody>

this solution with helpers in D1-G5,
in D2 =IFERROR(SEARCH(D$1,$C2),0) copy across and down to G5.

in B9 =SUMPRODUCT(--($B$2:$B$5=B$8),--($D$2:$D$5>0))
B10 =SUMPRODUCT(--($B$2:$B$5=B$8),--($E$2:$E$5>0))
B11 =SUMPRODUCT(--($B$2:$B$5=B$8),--($F$2:$F$5>0))
B12 =SUMPRODUCT(--($B$2:$B$5=B$8),--($G$2:$G$5>0))

and copy across
 
Upvote 0

Forum statistics

Threads
1,215,490
Messages
6,125,096
Members
449,205
Latest member
ralemanygarcia

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