In Microsoft Excel 2010/2013, I have five data columns as follows :
| A | B | C | D | E |
------------------------------
line 1 | 12| 7| 1.71| 5| 8.57|
C1: it's a formula ==> A1/B1, and it's formatted as two decimal places.
However, the formula of E1
(which is C1*D1
) gives 8.57 instead of 8.55, I figured out that Excel uses C1's formula instead of the displayed value, which is not my expectation!
So how can I enforce Excel to use the value(displayed) of a cell instead of its formula, to calculate another formula?
Note: I can get around by using the following formula in E1
:
ROUND(C1,2)*D1
...but I want a solution which gets the displayed value directly without formatting the C1
twice.
=ROUND(A1/B1,2)
- Scott Craner