Bikeman17 Posted August 24, 2008 Posted August 24, 2008 Hi there, Here is a calc field that is not very efficient. Is there a way to simplify it? I mean one case for Black, Red and Yellow. Case ( Color < 6 ; "Blue" ; Color = 6 ; "Black" ; Color = 7 ; "Black" ; Color = 8 ; "Black" ; Color = 9 ; "Red" ; Color = 10 ; "Red" ; Color = 11 ; "Red" ; Color = 12 ; "Red" ; Color = 13 ; "Red" ; Color = 14 ; "Yellow" ; Color = 15 ; "Yellow" ; Color = 16 ; "Yellow") The calc result must be Text as you can see.
comment Posted August 24, 2008 Posted August 24, 2008 How about: Case ( Color < 6 ; "Blue" ; Color < 9 ; "Black" ; Color < 14 ; "Red" ; "Yellow" )
Recommended Posts
This topic is 5995 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