Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Hello everyone,
I'm working on the program in CREO.
And Iwould like to know if we can add a OR in a IF function,
IF=="....."OR"....."
Like in a function if i want to add 2 things
In my case it's about 2 texts value (Attached)
Solved! Go to Solution.
Ok i find it by myself it's actaully | (altgr+ 6), not very intuitive, for the OR and you have to rewrite the value in my case
IF MARQUE == "ITOH" | MARQUE== "I"
Ok i find it by myself it's actaully | (altgr+ 6), not very intuitive, for the OR and you have to rewrite the value in my case
IF MARQUE == "ITOH" | MARQUE== "I"
When programming in a new language it is quite common to have to investigate as to the proper nomenclature for logical operators. Using a "pipe" or | for "OR" is typical, as is "||" (two "pipes"). Some languages use .OR., Excel uses OR(...). You just have to do a bit of a search.