Iterations in multiple rows

Aravis

New Member
Joined
Mar 10, 2019
Messages
4
So, it's the first time I'm using iteration in excel. When I first tried it out in just one row it worked fine. The problem is that I need to do it in 23 other rows in the same sheet. The iterations work fine in the first row (row 3), but for the remaining 23 rows I only get the #NUM ! error.

In cell D3 I have:
Code:
=MAX(2.38*(ABS(F3-E3))^0.25;12.1*SQRT($O$19))

In E3 I have:
Code:
=((($O$26/((0.303*EXP(-0.036*B3))+0.028))-(B3-$O$9)+(3.05*(10^(-3))*(5733-(6.99*(B3-$O$9))-$O$23))+(0.42*((B3-$O$9)-(VLOOKUP(A3;'References PMV'!$G$2:$H$26;2;FALSE))))+(1.7*(10^(-5))*B3*(5867-$O$23))+(3.96*(10^(-8))*C3*(((F3+273)^4)-((H3+273)^4))))+(0.0014*B3*34)+(C3*D3*F3))/((0.0014*B3)+(C3*D3))

In F3 I have
Code:
=35.7-(0.028*(B3-$O$9))-((VLOOKUP(A3;'References PMV'!$G$2:$I$26;3;FALSE))*(3.96*(10^(-8))*C3*(((F3+273)^4)-((H3+273)^4))+(C3*D3*(F3-E3))))

So all these cells are refering to each other, and F3 is also refering to itself. I have then "pulled down" the formulas so they are also in row 4-26 in addition to row 3.

I have tried to google for solutions and all I find there is that I should adjust the maximum iterations, but this makes no difference.

Anyone who knows what I'm doing wrong?
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Cells that refer to themselves? Isn't that somewhat circular? F3 can't refer to itself within formula... it doesn't know what it's end value is. I don't know how U entered the formula without error? However, if U put a named range in F3 and then referred to that named range within the F3 formula it might work... don't know. Anyways, it sounds like it's just not copying and updating your formula right as U move it to other cells. Take a careful look at what the copied formula cell references are compared to what they should be. HTH. Dave
 
Upvote 0
Yes, it's circular. I have enabled iterative calculations so that I can use circular references. And the formulas are copying correctly so that is not the problem.
 
Upvote 0
I trialed entering your formulas and there seems to be several errors. U have semicolons in places where commas should be ie….
Code:
=MAX(2.38*(ABS(F3-E3))^0.25;12.1*SQRT($O$19))
Max seems to want a comma between the arguments not a semicolon ie….
Code:
=MAX(2.38*(ABS(F3-E3))^0.25,12.1*SQRT($O$19))
The second formula is similar and I wasn't able to enter the formula at all. I trialled turning on the iterative calculations and still was unable to enter these formulas? Dave
 
Upvote 0

Forum statistics

Threads
1,213,517
Messages
6,114,089
Members
448,548
Latest member
harryls

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