IEW Posted August 25, 2005 Posted August 25, 2005 The follwing script works for d > 14 and turns days_return red. However, I cant get it to work for d < 14 and leave days_return black. Any ideas? TIA Ivan If (Return_Date > 1 ; Let (d = Return_Date-InvoiceDate; If ( d > 14; TextColor ( Days_Return ; RGB ( 255 ;0 ; 0)))))
comment Posted August 25, 2005 Posted August 25, 2005 Try: Case ( Return_Date - InvoiceDate > 14 ; TextColor ( Days_Return ; RGB ( 255 ; 0 ; 0 ) ) ; Days_Return ) I didn't catch the significance of Return_Date > 1.
Recommended Posts
This topic is 7031 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