Free Newsletter Signup
Contact me | vCard
Brian on CNN
Brian on CBS Radio
Privacy Policy
FileMaker is a registered trademark of FileMaker, Inc. in the U.S. and other countries.
Search | List | Show Random | Upload | Add This to Your Site
CardinalToText ( Amount )
Clement Hoffmann, none none
Converts Numbers to Text in French (...from 999 billions to the tenth of unit...)
/* Custom function by Clement Hoffmann */ /*______________[ 2006-03 ]_____________*/ /*_____________ FMP8 or higher ___________*/ If ( Amount; Let ( [ currency = "euro"; fraction = "centime"; vW = Int ( Mod ( Amount; 10 ^ 12 ) ); vB = Int ( Mod ( Amount; 10 ^ 12 ) / 10 ^ 9 ); vM = Int ( Mod ( Amount; 10 ^ 9 ) / 10 ^ 6 ); vT = Int ( Mod ( Amount; 10 ^ 6 ) / 10 ^ 3 ); vH = Int ( Mod ( Amount; 10 ^ 3 ) ); vD = Mod ( Int ( Amount * 100 ); 100 ); //# Quantifiers used by the CardinalToText_Utility sub-function : "cent¶mille¶million¶milliard¶" bil = If ( vB; CardinalToText_Utility ( vB; 4 ) ); mil = If ( vM; CardinalToText_Utility ( vM; 3 ) ); thd = If ( vT; CardinalToText_Utility ( vT; 2 ) ); hnd = If ( vH; CardinalToText_Utility ( vH; "" ) ) & If ( vW; currency & If ( vW > 1; "s" ); "zéro " & currency ) & If ( vD; " et " ); dec = If ( vD; CardinalToText_Utility ( vD; "" ) & fraction & Case ( vD > 1; "s" ) ) ]; bil & mil & thd & hnd & dec ) ) Then copy & paste into FileMaker Advanced's Edit Custom Function window.
Description:
Converts Numbers to Text in French Range: from 999 billions to the tenth of unit Recursive: No Calls : CardinalToText_Utility ( value ; quantifier )
Note: these functions are not guaranteed or supported by BrianDunning.com. Please contact the individual developer with any questions or problems.
This is my Custom Function and I want to edit it
digg this page | del.icio.us this page
Newest Custom Functions:
ToMarket
Become a successful software entrepreneur. Click here.
Custom Function Authors: Link to all of your own custom functions on this site with the following URL: http://www.briandunning.com/filemaker-custom-functions/results.php?author=Your Name Here
Sunday, August 13 2006, Orlando FL Courtyard Orlando International Drive