Forum Discussion
wmendez27
Nov 17, 2024Copper Contributor
Sharepoint List Help!!
I have one Column called 'QA Score' This is what I want to do: 'QA score' needs to show the value of the column 'Call Review Average Score' if 'Call Review' is selected in 'Score Category' 'QA sco...
Martin-Coupal
Nov 17, 2024Iron Contributor
You need to create a calculated column QA Score where the formula will be something like =IF(ScoreCategory="Call Review",CallReviewAverageScore,IF(ScoreCategory="Voicemail Review",VoicemailReviewTotalScore,IF(ScoreCategory="Gatekeeper Review",GatekeeperReviewTotalScore,IF(ScoreCategory="No Call Account Review",NoCallReviewTotalScore,0))))