I have a simple table "jobs", basically a list of finished jobs, for which customers pay in various currencies. So there is a field "price" and a field "currency", linked to a table "currencies", to specify the currency of the invoiced price.
I would like to have another field in the "jobs" table where price is automatically converted to GBP according to exchange rates specified in the "currencies" table.
Probably, price in the "job" table has to be multiplied by a particular exchange rate, depending on which original currency it is in, and the result written into a new field, named "converted price" or sth like that.
I reckon this can be done through a query and a calculated field added to the "jobs" table, but I don't know how.
thanks for any ideas.
Jakub