Aug 25 2022 02:04 AM
Hi I am looking to add up all of my 'Score' columns and then divide it by my 'Items' column to get an average percentage
Items | Score 1 | Score 2 | Score 3 | Score 4 | Score 5 | Average Score |
1 | 50% | |||||
4 | 65% | 76% | 45% | 65% | ||
3 | 45% | 67% | 87% | |||
5 | 34% | 45% | 65% | 34% | 45% |
Any help would be appreciated, thanks!
Aug 25 2022 04:37 AM
@iDylBan94 Your Score 1, Score 2... columns should be number columns set as %. Then you need 2 calculated columns:
Items: the formula to count the number of columns that have a percentage value is shown below. Set it to 0 decimal places:
=IF(ISBLANK([Score 1]),0,1)+IF(ISBLANK([Score 2]),0,1)+IF(ISBLANK([Score 3]),0,1)+IF(ISBLANK([Score 4]),0,1)+IF(ISBLANK([Score 5]),0,1)
Average Score: to do the average set the data type to be a number with 1 decimal place and show as percentage:
=([Score 1]+[Score 2]+[Score 3]+[Score 4]+[Score 5])/Items
Rob
Los Gallardos
Intranet, SharePoint and Power Platform Manager (and classic 1967 Morris Traveller driver)