Hi,
please always mention which version of LimeSurvey you are using.
In this case this is very important.
Since Version 5.x. there is a built in plugin "statFunctions", in versions before you may use the plugin "getStatInSurvey"
[url]
gitlab.com/SondagesPro/ExportAndStats/getStatInSurvey
[/url]
Both functions do not count combinations in the dataset.
So you have to create a question (hidden), where you set the combinations,
like list(radio)
1: male - bananas
2: male - apples
3: female - bananas
4: female - apples
...
and you set the question by an equation like
{if(QGender==codeOfMale,if(QFruit==codeOfBanana,1,2),if(QFruit==codeOfBanana,3,4))}
or in a longer version
{if(QGender==codeOfMale and QFruit==codeOfBanana,1,if(QGender==codeOfMale and QFruit==codeOfApple,2,if(QGender==codeOfFemale and QFruit==codeOfBanana,3,4)))}
Then you can count by the plugin, how many times code 1 was selected, code 2 was selected, ...
Joffm