Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Excel calculation in one cell result in another

Tags:

excel

Hello I'm wondering is it possible to have the calculation in one cell and the result in another so that when the calculation is changed it automatically changes the result in the other cell.

E.g
A1 = (2*3*4)*5
B1 = Result of calculation

Example [EXCEL SHEET][1]

As mentioned, i would like it when the calculation is changed in the specific cell it will automatically adjust the result in the other cell.

like image 693
HHEX Avatar asked Sep 17 '25 03:09

HHEX


1 Answers

That's not how Excel works. What you call a "calculation" is really just a mix of numbers and symbols, which Excel regards as text.

Instead of putting text with a mix of symbols and numbers into a cell, you'd typically enter the number values into individual cells, then enter a formula into the cell where you want to see the result. That formula will reference the input cells. Example below.

enter image description here

Now you can change the values in the columns A, B, C and D and the result in column F will re-calculate.

What you describe can be achieved with the help of a named formula that you insert with Formulas > Name Manager > New then enter this formula into the Refers to field

=EVALUATE(Sheet1!$A$1)

Then enter the named range into a cell like in this screenshot

enter image description here

But then again, if you enter a "calculation" like (2*3*4)*5 into a cell, you might as well put a = sign in front of it and there is your result.

like image 93
teylyn Avatar answered Sep 19 '25 21:09

teylyn