kfok Posted January 21, 2006 Posted January 21, 2006 My FM solution has a field containing amounts of different currency, e.g. A$100, US$200, C$500. I want to convert all of them into US$ by creating a calculated field. Any ideas?
comment Posted January 21, 2006 Posted January 21, 2006 (edited) Start by breaking the information into two separate fields: Currency (text) and Amount (number). Then define a table of rates with two fields: Currency (text) and Rate (number). Define a relationship: YourTable::Currency = Rates::Currency Finally, in YourTable define a calculation field (result is number) = Amount * Rates::Rate Don't forget to include a rate of 1 for US$. EDIT: seeing this is version 6, when I say "table", I mean "file". Edited January 21, 2006 by Guest
Lee Smith Posted January 21, 2006 Posted January 21, 2006 This file by Christian Jaeger, that I found in the Sample Files Topic Area maybe of help Link Lee
Lee Smith Posted January 21, 2006 Posted January 21, 2006 (edited) Dam*, conversion got me again. Here it is again. I fixed the other link too. Euro_Rates.zip Edited January 21, 2006 by Guest link repaired
Recommended Posts
This topic is 6945 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now