Jan 26 2023 01:26 AM
Hi,
id like to round this formula up so the end result will be summed to the nearest 4
IFERROR((SUM(D4:G4)-(SUM(MAX(D4:G4)+MIN(D4:G4))))/(COUNT(D4:G4)-2),"")*(1+'%'!J5)
Jan 26 2023 01:34 AM
Solution@marc47555 See if MROUND does what you require.
=MROUND(IFERROR((SUM(D4:G4)-(SUM(MAX(D4:G4)+MIN(D4:G4))))/(COUNT(D4:G4)-2),"")*(1+'%'!J5),4)
Jan 26 2023 02:35 AM