Excel - If range of cells -


i trying @ skill ratings displayed in columns b:g , return relevant value listed below column a.

enter image description here

the different permutations have cover below:

all 3's return 3 2's return 2 1's return 1 mix of 3's , 2's return 2 mix of 2's , 1's return 1 mix of 3's , 1's return 2 mix of 3's, 2's , 1's return 2 

i used formula below close possible end goal realised data inaccurate @ points.

=if(sum(b2:g2)=18,3,if(sum(b2:g2)=12,2,if(sum(b2:g2)=6,1,if(sum(b2:g2)<12,1,if(sum(b2:g2)<18,2))))) 

thank in advance may offer!

how this

=floor(median(min(b2:g2),max(b2:g2)),1) 

enter image description here


Comments

Popular posts from this blog

What is happening when Matlab is starting a "parallel pool"? -

angular - DownloadURL return null in below code -

php - Cannot override Laravel Spark authentication with own implementation -