Using the value from one cell in forula in another cell

PJMa

New Member
Joined
May 30, 2023
Messages
2
Office Version
  1. 365
Platform
  1. Windows
No doubt this is very elementary, but I can't find the answer
On the attached spreadsheet sample, I want to put a formula in cell K4 that takes the value in cell J4 and simply multiplies it by 4.
The formula in cell J4 is "=ROUND(I4, 1)"
However, when I try to do so, it instead seems to pick up the unrounded number (i.e. the value from cell I4), and therefore gives the answer in cell K4 of 5.2 rather than the 4 I am looking for.
Please can someone put me out of my misery and explain (in fairly simple terms) what I'm doing wrong.
Thank you
 

Attachments

  • Screenshot 2023-05-30.png
    Screenshot 2023-05-30.png
    26.3 KB · Views: 5

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Welcome to the Board!

Excel uses the actual values in the underlying cell, not the displayed/formatted value.
The issue is the the value in cell I4 is actually 1.3, not 1. You have just formatted column I to show no decimals.

If you want column J to be 1, and not 1.3, then you need to round off to 0 decimal paces, i.e.
Rich (BB code):
=ROUND(I4,0)
The formula you had before round off to one decimal place.
 
Upvote 0
Solution
Thank you so much. It was indeed a very basic error!!
 
Upvote 0
You are welcome.
Glad I was able to help!
 
Upvote 0

Forum statistics

Threads
1,215,480
Messages
6,125,050
Members
449,206
Latest member
Healthydogs

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top