Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a chart expression:
COUNT({<AGREEN={1}>}QData)/COUNT(QData) which gives a % Agree score.
I want another chart expression that gives this % for just one particular value of another field (eg Gender).
Is there a way I can do this by adapting the existing chart expression?.
Regards,
Racine1962
By using this condition you can use gender condition also
COUNT({<AGREEN={1}, Gender={'M'}>}QData)/COUNT(QData)
Or
COUNT({<AGREEN={1}, Gender={'M'}>}QData)/COUNT({<Gender={'M'}>}QData)
Regards
Anand
COUNT({<AGREEN={1},Gender={'Female'}>}QData)/COUNT(QData)
By using this condition you can use gender condition also
COUNT({<AGREEN={1}, Gender={'M'}>}QData)/COUNT(QData)
Or
COUNT({<AGREEN={1}, Gender={'M'}>}QData)/COUNT({<Gender={'M'}>}QData)
Regards
Anand
Thanks but this gives the same % as the overall.
Racine62