Can anyone help with this Form issue please.
I have a combo box on my form where the user selects a Currency(cCur) from a query. Each currency record in the query has related exchange rate fields, GBP and USD.
The user also inputs a value(pVal1) that I then want to use in calculating GBP(pVal2) and USD(pVal3) from the related exchange rate in the query.
In the query I have the following fields. ID, Currency, GBP, USD.
On the form I want the following!
Currency = Combo Box Selection.
pVal1 is a user input.
pVal2 = pVal1 * GBP(from query)
pVal3 = pVal1 * USD(from query)
Any help will be very much appreciated!
I have a combo box on my form where the user selects a Currency(cCur) from a query. Each currency record in the query has related exchange rate fields, GBP and USD.
The user also inputs a value(pVal1) that I then want to use in calculating GBP(pVal2) and USD(pVal3) from the related exchange rate in the query.
In the query I have the following fields. ID, Currency, GBP, USD.
On the form I want the following!
Currency = Combo Box Selection.
pVal1 is a user input.
pVal2 = pVal1 * GBP(from query)
pVal3 = pVal1 * USD(from query)
Any help will be very much appreciated!