KLA Posted January 9, 2002 Posted January 9, 2002 On layout "A", I have an override field (a number field - no options selected - the "parent" field is a calculation field showing dollar amount) and i use it when i need to force the field to show zero dollars, overriding the calculation. So i enter "0" and it shows $0.00. Basically my question is, how do i make this $0.00 be blank? I'm actually ok with the $0.00 but on another layout," B", i need the field to show up blank because i have layered it (and the parent field) with another field (making them "see-through"). So that only the field with the dollar amount i want shown, will show up. Right now it shows the zero as well over the dollar amount. And i wouldn't mind if it showed up blank on "A".
tlsparker Posted January 9, 2002 Posted January 9, 2002 On layout B, you could format the text color of your field to be the same as the background color. This would make the field invisible. Tom [email protected] http://www.tgparker.com/filemaker
Rigsby Posted January 9, 2002 Posted January 9, 2002 Right idea – wrong way round – Try this: Case(Override = "", TextToNum(""), Round (Payment Amount - Time Billing::Monthly Commission, Override), 2)
KLA Posted January 10, 2002 Author Posted January 10, 2002 Thanks Thom! It works! Someday soon i'll finish this database!
Thom Posted January 10, 2002 Posted January 10, 2002 Use TextToNum("") instead of 0. For example: total(calc,number) = Case(
KLA Posted January 10, 2002 Author Posted January 10, 2002 The first Tom's suggestion didnt' work because it's the override field i'd need to change the color of and it takes the color of the parent field. But thanks for suggestion. But Thom - i'm trying to understand your suggestion. Do I put that formula in the caluclation of the parent field? My calculation is as follows: Round(If(IsEmpty(Override), Payment Amount - Time Billing::Monthly Commission, Override), 2) Will you revise for me?
Recommended Posts
This topic is 8424 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