Forum Discussion
Sam Bird Bird
May 03, 2018Copper Contributor
Sum Function help
Hi, further to my below post. I am trying to create a formula to automatically calculate the sum of inputs from IF/OR functions. In the scorecard these If/Or functions will automatically put in a...
Tomasz Kocur
May 03, 2018Brass Contributor
Hi Sam
Enter in the f12 cell:
=SUM(D2:F2,D4:F4,D6:F6,D8:F8,D10:F10)
- Sam Bird BirdMay 04, 2018Copper Contributor
Hi,
This is showing a sum of 0 rather than 10... It doesnt seem to be registering the numbers inputted by the formulas in each of those cells
Formulas are for example : =IF(AND(C4>550,C4<=650),"3","")
This gives a score of 3 in call F4 however the sum function does not seem able to sum these...
- SergeiBaklanMay 04, 2018Diamond Contributor
Or use
=IMSUM(D2:F2,D4:F4,D6:F6,D8:F8,D10:F10)
if you prefer to keep scores as text
- Tomasz KocurMay 04, 2018Brass ContributorHi Sam
This is showing a sum of 0 because you have entered "1", "2, "3" with quotes instead of the number.
PC interprets the characters between quotes as text.
Please replaces the IF formula accordingly for example :
From this =IF(AND(C4>550,C4<=650),"3","")
To this =IF(AND(C4>550,C4<=650),3,"")