Question : EXCEL ROUND

How can I ROUND the answer in this current formula:
=IF(OR(ISTEXT(G8),ISTEXT(H8),ISTEXT(I8),ISTEXT(J8)),"",((G8*'Grade%'!$C$2)+(H8*'Grade%'!$C$3)+(I8*'Grade%'!$C$4)+(J8*'Grade%'!$C$5))/100)
I need it to round up or down ad .5

Answer : EXCEL ROUND

OK, you are correct, somewhere along the way I lost the sheet reference so formula should be

=IF(ISERR(G8+H8+I8+J8),"",ROUND(SUMPRODUCT(G8:J8,TRANSPOSE(Grade%!C2:C5))/100,0))

although as TRANSPOSE forces you to use CSE you might as well switch to SUM, i.e.


=IF(ISERR(G8+H8+I8+J8),"",ROUND(SUM(G8:J8*TRANSPOSE(Grade%!C2:C5))/100,0))

both still need CTRL+SHIFT+ENTER

regards, barry

Random Solutions  
 
programming4us programming4us