brad2610 Posted February 22, 2005 Posted February 22, 2005 This one is killing me because it is so simple but I am having erious brain blockage.... Basically looking to write a script / calculation that does the following. If (Field name) starts with "UL" then (Client) = "Ultra" If not then "Unknown" Here is my current entry that is not working correctly. If (Field name=Left ("UL"; 2) ; "Ultra" ; "Unknown" ) Someone please save my brain from the fog it is in. thanks Brad
comment Posted February 22, 2005 Posted February 22, 2005 Case ( Left ( FieldName ; 2 ) = "UL" ; "Ultra" ; "Unknown" )
Recommended Posts
This topic is 7217 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