Newbies ojedapaco Posted January 23, 2002 Newbies Posted January 23, 2002 Greetings... I'm searching for directions in translating numeric money amounts into spanish text: $250 = doscientos cincuenta Any help would be appreciated!
Garry Claridge Posted January 24, 2002 Posted January 24, 2002 You could use a table/database which has primary values and their written equivalent. Such as: amount: 1 spanish: "uno" english: "one" amount: 50 spanish: "cincuenta" english: "fifty" amount: 200 spanish: "doscientos" english: "two hundred" amount: 300 etc For example, with my_amount = $250. Use calculations, such as: Integer(my_amount/ 100) ; relational lookup of result would give "doscientos" Modulo(my_amount/100) ; would give "cincuenta" Perhaps this is one method which could be expanded on! All the best. Garry
BobWeaver Posted February 4, 2002 Posted February 4, 2002 This one came up a while ago. Check out this topic: http://www.fmforums.com/cgi-bin/ultimatebb.cgi?ubb=get_topic&f=15&t=000356&p=
BobWeaver Posted February 4, 2002 Posted February 4, 2002 Oops, double posted!! [ February 03, 2002, 11:29 PM: Message edited by: BobWeaver ]
Recommended Posts
This topic is 8328 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