cosmicsport
New Member
- Joined
- Apr 17, 2014
- Messages
- 7
I have a column range(V:V) of cells containing multiple entries separated by a comma (,). I have another column (AD) containing single entries.
I would like to find a formula not VBA that counts all instances of a string (like "Make more money") in range V:V happening for one certain instance in AD (like "Lab owner").
I got so far (see below) but it does not count the instances when "Make more money" is in an array of entries separated by a comma.
(like "Become a better technician., Make more money., Get a promotion to manager/supervisor/teamlead")
What can I do ????
Thanks in advance for your help!!!
=SUMPRODUCT(--(V:V="Make more money."),--(AD:AD="Lab owner"))
This gives out 2 but it should be 6.
I would like to find a formula not VBA that counts all instances of a string (like "Make more money") in range V:V happening for one certain instance in AD (like "Lab owner").
I got so far (see below) but it does not count the instances when "Make more money" is in an array of entries separated by a comma.
(like "Become a better technician., Make more money., Get a promotion to manager/supervisor/teamlead")
What can I do ????
Thanks in advance for your help!!!
=SUMPRODUCT(--(V:V="Make more money."),--(AD:AD="Lab owner"))
This gives out 2 but it should be 6.
Last edited: