Formual Assistance (Circular Ref)

rudebwoyrohan

New Member
Joined
Jul 4, 2015
Messages
2
I need a formula in B7 to pick the lesser of B5 and B6. I keep getting a circular reference. Please assist if you can. Thank you.

ABC
1Rate 10.57
2Rate 20.75
3Rate 3200
4Rate 40.001
5Cap=ROUND(IF(ROUND(B3*B4,6)>B8*30%,B8*30%,ROUND(B3*B4,6)),6)
B3 x B4 cannot be >30% of B8 so capped at 30% of B8

<tbody>
</tbody><colgroup><col></colgroup>
6Calculated Fee=B3*B4
7Admin Fee
This should be the lesser of B5 and B6

<tbody>
</tbody><colgroup><col></colgroup>
8Rate A=B1-B7
9Rate B
=ROUND(B8/B2,6)

<tbody>
</tbody><colgroup><col></colgroup>

<tbody>
</tbody>
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Is this what you need? Remove space around the < in formula.

Code:
=IF(B5 < B6,B5,B6)
 
Last edited:
Upvote 0
Try:

=MIN(B5, B6)

You're getting the circular reference warning since B8 references B7, which references B5, which references B8.
 
Last edited:
Upvote 0
Here is a solution. If you need to hide the cell that has the calculation in C3XC4 then do the calculation in an another column by itself and hide the column or you can also put it in a separate worksheet in your workbook. Please note the column letters have changed from what you described above.

A
B
C
D
E
1Rate 10.57
2Rate 20.75
3Rate 3200
4Rate 40.001
5Cap0.018 C3 x C4 cannot be >30% of C8 so capped at 30% of C8
6Calculated Fee0.2
7Admin Fee0.2 This should be the lesser of C5 and C6
8Rate A0.06
0.2
D8 is the C3 X C4 calculation in your formula in C8 is referred to in C5 creating circular reference, Therefore you need to do the C3 X C4 calculation in a separate cell solved the circular reference.
9Rate B0.08

<colgroup><col><col><col span="2"><col></colgroup><tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,429
Members
448,961
Latest member
nzskater

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