I am pretty solid in my excel skills but am still learning about VBA. I am trying to figure out the script for performing an automated currency calulation (currency converter) when the cell in the first column is selected and a value is entered. The adjacent cell next to it should perform the currency calculation and return a value. Let me set the scene; $A$1 has my currency conversion Range B2:B2002 are the cells reserved to enter a value in dollars(one cell at a time). Range C2:2002 are the cells reserved to enter a value in Euros (one cell at a time). So basically if I enter a value in dollars, it calculates Euros and vise versa. But, I also want to be able to change and recalculate as needed in the same cells. So lets say I enter a value in dollars in any cell in the range B2:B2002 and it calculates euros in the adjacent cell in range C2:2002 (so now neither cell is blank). I want to be able to change the euro value in an already calculated cell (C2:2002) and perforn the calculation back to dollars in the corresponding cell in range B2:B2002. I only want to calculate all the cells at once, but rather one cell at a time.
A$1$ = 1.15
USD to EURO Formula = ROUND(B / $A$1,5)
EUOR to USD Formula = ROUND(C * $A$1,5)
A$1$ = 1.15
USD to EURO Formula = ROUND(B / $A$1,5)
EUOR to USD Formula = ROUND(C * $A$1,5)