August 16, 200520 yr i have two scripts "accept" and "deny" and depending on which is run at the end of the script it fills in a field with either "accepted" or "denied" but i would also like it to show up bold and green for accepted and bold and red for denied can this be done in the script or do i have to do it another way i have read about it in my book and i have searched it on here and it still doesn't makes sense on what to do, could someone please dumb it down for me thanks vich
August 16, 200520 yr Create a new calc field lbl_AcceptedDenied = Case(MyTextField = "Accepted";TextColor("Accepted";RGB(0;255;0)); MyTextField = "Denied";TextColor("Denied";RGB(255;0;0))) Type the text "<>" on your layout and set its text style to Bold.
Create an account or sign in to comment