Forum Discussion
GaryAminoff
Sep 18, 2023Copper Contributor
I want the result of a formula to be rounded to the nearest 1,000
I can't seem to come up with a formula that will take the result of a formula in a cell and round it to the nearest thousand. Any suggestions?
GaryAminoff
Sep 18, 2023Copper Contributor
I must be missing something. For example, I have a cell where the formula is =((G11*G6)*12).
If I enter: =ROUND((G11*G6)*12),-3
I get an error message: Too few arguments for this formula.
What I want to do is round the result of the formula to the nearest thousand.
HansVogelaar
Sep 18, 2023MVP
It should be
=ROUND(((G11*G6)*12),-3)
or, since the parentheses in the original formula are superfluous:
=ROUND(G11*G6*12,-3)
- GaryAminoffSep 18, 2023Copper ContributorThat works. Thanks much.