Forum Discussion
Issue using the result from one formula for another formula
- Oct 08, 2022
SandraG2022 wrote: ``I have a simple formula in D11 =(D1*D5)/J1 I am getting the correct result and used the formatting "number decimal places 3" so the result shows as 0.044[.] When I am using the result from D11 for another formula at D12 =D10*D11 it gives me a wrong result (16.85)``
Explicitly round to the precision that you want. For example:
=ROUND(D1*D5/J1, 3)
or
ROUND(D11, 3) where you reference D11
Usually, formatting affects only the appearance of the value, not the actual cell value.
SandraG2022 wrote: ``I have a simple formula in D11 =(D1*D5)/J1 I am getting the correct result and used the formatting "number decimal places 3" so the result shows as 0.044[.] When I am using the result from D11 for another formula at D12 =D10*D11 it gives me a wrong result (16.85)``
Explicitly round to the precision that you want. For example:
=ROUND(D1*D5/J1, 3)
or
ROUND(D11, 3) where you reference D11
Usually, formatting affects only the appearance of the value, not the actual cell value.
- SandraG2022Oct 08, 2022Copper Contributor
Thank youJoeUser2004 it worked. 🙂