NewbieHere Posted June 24, 2005 Posted June 24, 2005 hi all, i'll make this quick and simple. I would like to create a field (named status) that would display either the following: "Unpaid" "Paid" I would like to make this into a calculation field, so that if a specific field is not filled out, field status will return either "paid" or "unpaid" thanxs
comment Posted June 24, 2005 Posted June 24, 2005 Quick and simple it is. Status (calculation, result is text) = Case ( IsEmpty ( specific field ) ; "Unpaid" ; "Paid" )
NewbieHere Posted June 24, 2005 Author Posted June 24, 2005 Okay that was easier then i thought. thanxs but another question to add: is there anyway to get "unpaid" in red text and "paid" in green?
Slobey Posted June 24, 2005 Posted June 24, 2005 case( isempty(specific field);TextColor ("unpaid";RGB (255;0;0));TextColor ("paid";RGB (0;255;0)))
Recommended Posts
This topic is 7160 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