0

I am trying SUMPRODUCT Formula on lets say Column A and Column B. Column A has Patient referrals and Column B has percentage referred for each hospital. I am using this syntax: ROUND(SUMPRODUCT(A1:A10,B1:B10),0). However, the formula rounds the total result instead of Rounding at every instance. For example this is what I want to achieve through a formula:

(ROUND(1020%),0)+ (ROUND(1530%),0)+(ROUND(125*50%),0)

Instead the formula works this way:

ROUND((1020%)+(1530%)+(125*50%),0)

This doesnot give the same result. Can anyone help me out?

2 Answers 2

1
=sumproduct(round(A1:A3,0),round(B1:B3,0))
0

You cannot achieve this with SUMPRODUCT. Formally you can use this function, however it will be equivalent to using SUM. It is not the same if you round each factor separately or you round products. See the screenshot. Round with Sumproduct

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .