I have a survey from 100 users and I'm trying to calculate some statistics. The relevant fields in my survey look something like this:
Gender Interests
B1: Male D1: Running, Snowboarding, Mountain Bikes
B2: Male D2: Programming, Running, Paintball
B3: Female D3: Bowling, Gymnastics
B4: Male D4: Rock Climbing, Running,
I need to calculate the % of Males that are interested in "Running". The text will always appear in the string exactly as "Running" but it may appear in a different order.
Here what I have so far:
=SUM(
COUNTIF(
D1:D100,ISNUMBER(
SEARCH(D1:D100,"Running")
)
)
)
Notice I haven't factored in the Male/Female criteria yet. This expression is currently returning a 0.
Any help would be greatly appreciated.