IF function
thank you
"Arvi Laanemets" wrote:
Hi
=TRUNC((SUM(F3:O3)+CHOOSE(11-COUNTBLANK(F3:O3),C3,C3*20,C3*10,0,0,0,0,0,0,0,0))/CHOOSE(11-COUNTBLANK(F3:O3),1,30,30,30,40,50,60,70,80,90,100 ))
(There can be up to 28 options in CHOOSE function)
--
Arvi Laanemets
( My real mail address: arvi.laanemets<attarkon.ee )
"Inspector" wrote in message
...
Can someone tell me why this formula gives me an error message? It works
for
0 thru 5 but when i add the sixth or more it errors out.
Thanks, John
=IF(10-COUNTBLANK(F3:O3)=0,TRUNC(SUM(F3:O3)+C3),
IF(10-COUNTBLANK(F3:O3)=1,TRUNC((SUM(F3:O3)+C3*20)/30),
IF(10-COUNTBLANK(F3:O3)=2,TRUNC((SUM(F3:O3)+C3*10)/30),
IF(10-COUNTBLANK(F3:O3)=3,TRUNC(SUM(F3:O3)/30),
IF(10-COUNTBLANK(F3:O3)=4,TRUNC(SUM(F3:O3)/40),
IF(10-COUNTBLANK(F3:O3)=5,TRUNC(SUM(F3:O3)/50),
IF(10-COUNTBLANK(F3:O3)=6,TRUNC(SUM(F3:O3)/60,""))))))
|