Jump to content

Frustrating Functions


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

Recommended Posts

Hi FMNovice12, wink.gif

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

Link to comment
Share on other sites

This topic is 7238 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.