Arcanoi Posted August 5, 2004 Posted August 5, 2004 I currently have the calculation field: Total Balance Remaining Calculation = Case ( Total Balance Remaining > 0 ; TextColor ( Total Balance Remaining ; RGB ( 250 ; 0 ; 0 ) ) ; Total Balance Remaining = 0 ; TextColor( Total Balance Remaining ; RGB ( 0 ; 0 ; 0 ) ) ) Where the Field Total Balance Remaining is a Calculation Field with the formula: Total Amount Owed - Total Amount Paid what am I doing wrong to make the text change colour?
RalphL Posted August 5, 2004 Posted August 5, 2004 You might try: Total Balance Remaining Calculation = Case ( Total Balance Remaining > 0 ; TextColor ( Total Balance Remaining ; RGB ( 250 ; 0 ; 0 ) ) ; TextColor( Total Balance Remaining ; RGB ( 0 ; 0 ; 0 ) ) ) Or forget about this calculation and format the number to print red when negative. Go to layout mode select number field then from the Format Menu choose number. Format as decimal then under negative select use color and set the color.
Arcanoi Posted August 5, 2004 Author Posted August 5, 2004 Under normal circumstances I would have it print red when negative but I actually want it to do the reverse and print red when positive be black when zero and have green with (....) when negative to show that we ow them money.
RalphL Posted August 5, 2004 Posted August 5, 2004 I did some experimenting. If the calculaed color field is formated as a decimal the color remains black.
RalphL Posted August 5, 2004 Posted August 5, 2004 Try this text calculataion: Case ( Balance > 0; TextColor ( If ( Position ( Balance ; "." ; 1 ; 1 ) ; Left ( Balance & "00"; Position ( Balance ; "." ; 1 ; 1 ) + 2) ; Left ( Balance & ".00"; Position ( Balance & ".00"; "." ; 1 ; 1 ) + 2 )) ; RGB ( 255 ; 0 ; 0 ) ); Balance < 0 ; TextColor ( If ( Position ( Balance ; "." ; 1 ; 1 ) ; Left ( Balance & "00"; Position ( Balance ; "." ; 1 ; 1 ) + 2) ; Left ( Balance & ".00"; Position ( Balance & ".00"; "." ; 1 ; 1 ) + 2 )) ; RGB ( 0 ; 255 ; 0 ) ) ; TextColor ( If ( Position ( Balance ; "." ; 1 ; 1 ) ; Left ( Balance & "00"; Position ( Balance ; "." ; 1 ; 1 ) + 2) ; Left ( Balance & ".00"; Position ( Balance & ".00"; "." ; 1 ; 1 ) + 2 )) ; RGB ( 0 ; 0 ; 0 ) ) ) Replace Balance with you field Total Balance Remaining.
Arcanoi Posted August 9, 2004 Author Posted August 9, 2004 If I have cents that doesn't make it show up correctly
Recommended Posts
This topic is 7480 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