Can I circumvent circular references in excel by using VBA code (or is there a better way to make a formula) to calculate currency?
In this case I have 2 columns where one is USD the other is GBP.
When I enter an amount into the USD column I want the GBP column calculate on the fixed exchange rate I placed into a separate cell (C1).
In cell B1 the formula is =IF(A1>0,(A1*$C$1),0)
In cell A1 the formula is =IF(B1>0,(B1/$C$1),0)
Cell C1 is a fixed value, like 0.639
What I want is to be able to enter either of the currencies and the other cell would calculate itself.
In this case I have 2 columns where one is USD the other is GBP.
When I enter an amount into the USD column I want the GBP column calculate on the fixed exchange rate I placed into a separate cell (C1).
In cell B1 the formula is =IF(A1>0,(A1*$C$1),0)
In cell A1 the formula is =IF(B1>0,(B1/$C$1),0)
Cell C1 is a fixed value, like 0.639
What I want is to be able to enter either of the currencies and the other cell would calculate itself.