brad2610 Posted February 22, 2005 Share 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 Link to comment Share on other sites More sharing options...
comment Posted February 22, 2005 Share Posted February 22, 2005 Case ( Left ( FieldName ; 2 ) = "UL" ; "Ultra" ; "Unknown" ) Link to comment Share on other sites More sharing options...
Recommended Posts
This topic is 6613 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