Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Team,
Below is sample table related to my query :
SurveyId,Question,QuestionId,Answer
1,Overall Rating,10,85
1,CompetitorRating,11,91
2,Overall Rating,10,83
2,CompetitorRating,11,
3,Overall Rating,10,81
3,CompetitorRating,11,64
We want to find Average of Overall Rating only when CompetitorRating is not blank.
Here the answer will be average of 85 and 81 because user has answered for CompetitorRating only for those two surveys.
I tried using P function but did not work.
Sum({<SurveyId= P({<QuestionId= {'11'},Answer-= {' '}>}) * P({<QuestionId= {'10'}>})>}Answer)
Kindly let me know for any clarifications.
Thanks,
Arvind
May be this
Sum({<SurveyId = {"=Sum({<QuestionId= {'10'}>} Answer) <> 0"}>} Answer)