Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 4969 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

I'm entering data from 18th century accounts, which are in pounds, shillings (20 to a pound), pence (12 to a shilling) and farthings (4 to a penny).

I need to add and subtract. I've seen a nice gadget for arithmetic with latitude and longitude ("sexagesimal evaluator" by Raybaudi, in Articles, Tips

Techniques ...) and wonder how it works, how I might adapt it.

All ideas gratefully received.

jdjd

Posted

Define a calculation field that returns the entered value in a common unit, say farthings, so cValue =

960 * Pounds + 48 * Shillings + 4 * Pence + Farthings 




Use this field to add or subtract. Use the Div() and Mod() function to extract the individual coin values from the result, e.g.:




Let ( [

£ = Div ( result ; 960 ) ;

r = Mod ( result ; 960 ) ; 



s = Div ( r ; 48 ) ;

r = Mod ( r ; 48 ) ;



d = Div ( r ; 4 ) ;

f = Mod ( r ; 4 )

] ;

...

)

Hopefully, you have individual fields for entering the original sums. If not, explain what notation you are using for the entry.

This topic is 4969 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.