Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is there something like $"UEF" 1

Status
Not open for further replies.

muppy111

Technical User
Nov 2, 2009
3
NL
CR11
Wonder if there is something like formula":


if xxxContinent $ "UEF" then ...
else
"Africa"

meaning or U or E or F

United States,Eurpe,FarEast.
William
 
Hi,
There is this:
Code:
If xxxContinent IN ("U",'E","F")
Then
......
Else
"Africa"

OR, If you want to check each letter and act on it then try:
Code:
Select {xxxContinent}
   Case "U" :
    "United States"
   Case "E" :
      "Europe"
   Case "F" :
      "FarEast"
   Default :
      "Africa"



[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
Thanks, the first option was the easiest but it should
be [ and not (

Thnaks anyway!
William
 
Hi,
Thats what comes from working different systems, In Oracle it is the ( while in CR it is the [

Glad it helped...




[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top