Newbies ldelappe Posted June 26, 2000 Newbies Posted June 26, 2000 Hello all, I need some help getting my web database to calculate and show the total. I have detailed the setup below in hopes that may help you help me. First calculation field is a text field with a value list and no additional text: $345 $395 $695 $0 Second fields are identical in text format, no text: $45 $45 The calculation field needs to show the total. This is the calculation that worked the last time: "TextToNum(Early Registration Fee) + TextToNum(East Additional Tickets) + TextToNum(West Additional Tickets)", with the fields respective to the above order. This field is then used in an encryption code to be sent via a secure secondary server to a credit card site. If anyone knows how to make this field show the calculation on the web, I would be forever grateful! At least until the next problem pops up ldelappe
Keith M. Davie Posted July 11, 2000 Posted July 11, 2000 I'm not sure I'm following your needs, but I would suggest you look at Langer's "Database Publishing with FileMaker Pro", pages 316-319. The answer in those pages may be pertinent to what you are attempting. Peace Keith M. Davie
Vaughan Posted August 23, 2000 Posted August 23, 2000 The problem is that the text fields all contain the "$" character. You'll need to remove the "$" before the TextToNum function will work properly. Try this... TextToNum(Subs(Early Registration Fee; "$"; "") + ... I have used the Subs() function here, but Left() could have also been used, but would neeed to assume that the "$" is always typed.
Recommended Posts
This topic is 9126 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