Deus_Ex_Machina
New Member
- Joined
- May 28, 2017
- Messages
- 11
Hi All,
So I'm trying to return a value of "Elite", "Athletic", "Average" or "Requires Conditioning" in the formula cell based on single leg jump height in cm (enetered into E69 and F69 compared to a percentage of leg length ($H$4 in the formula). The formula will take the lowest jump height of the left or right leg SMALL(E69:F69). Now this is all working except if the input cells are empty in which case I get a #NUM ! error. I have tried two AND functions to try get the last logic equation to say it fits "requires conditioning" but is also above "0" but I keep getting the error. Any ideas?
Thanks in advance
=IF(SMALL(E69:F69,1)>=$H$4*C69*2,"ELITE",IF(SMALL(E69:F69,1)>=$H$4*C69*1.5,"ATHLETIC",IF(SMALL(E69:F69,1)>=$H$4*C69,"AVERAGE",IF(AND(E69<$H$4*C69,E69>=0,"REQUIRESCONDITIONING",IF(AND(F69<$H$4*C69,F69>0,REQUIRESCONDITIONING,"")))))
=IF(SMALL(E69:F69,1)>=$H$4*C69*2,"ELITE",IF(SMALL(E69:F69,1)>=$H$4*C69*1.5,"ATHLETIC",IF(SMALL(E69:F69,1)>=$H$4*C69,"AVERAGE",IF(AND(SMALL(E69:F69,1)<$H$4*C69,(SMALL(E69:F69,1)>0)),"REQUIRESCONDITIONING",""))))
So I'm trying to return a value of "Elite", "Athletic", "Average" or "Requires Conditioning" in the formula cell based on single leg jump height in cm (enetered into E69 and F69 compared to a percentage of leg length ($H$4 in the formula). The formula will take the lowest jump height of the left or right leg SMALL(E69:F69). Now this is all working except if the input cells are empty in which case I get a #NUM ! error. I have tried two AND functions to try get the last logic equation to say it fits "requires conditioning" but is also above "0" but I keep getting the error. Any ideas?
Thanks in advance
=IF(SMALL(E69:F69,1)>=$H$4*C69*2,"ELITE",IF(SMALL(E69:F69,1)>=$H$4*C69*1.5,"ATHLETIC",IF(SMALL(E69:F69,1)>=$H$4*C69,"AVERAGE",IF(AND(E69<$H$4*C69,E69>=0,"REQUIRESCONDITIONING",IF(AND(F69<$H$4*C69,F69>0,REQUIRESCONDITIONING,"")))))
=IF(SMALL(E69:F69,1)>=$H$4*C69*2,"ELITE",IF(SMALL(E69:F69,1)>=$H$4*C69*1.5,"ATHLETIC",IF(SMALL(E69:F69,1)>=$H$4*C69,"AVERAGE",IF(AND(SMALL(E69:F69,1)<$H$4*C69,(SMALL(E69:F69,1)>0)),"REQUIRESCONDITIONING",""))))