Newbies FM Novice12 Posted June 4, 2004 Newbies Posted June 4, 2004 I am creating a db for a boarding/kennel facility which involves 3 files. The three files are related and share the relationship field of
LaRetta Posted June 4, 2004 Posted June 4, 2004 Hi FMNovice12, Try: Sum(PetInfo::WalksPerDay ) * 2 This will give you the total fee per client. If you want to maintain the fee per dog, put it in PetInfo as: WalksPerDay * (your fee) and then use Sum(WalksPerDay) in your main file for the total customer charge. I wouldn't hard code the fee into the calculations however. You could even use a global in your main file called WalkFee and reference that in your calculation. This will make it easier to change if need be (but it certainly isn't necessary). LaRetta
Recommended Posts
This topic is 7546 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