Skip to main content
12-Amethyst
January 12, 2023
Solved

Function OR ?

  • January 12, 2023
  • 1 reply
  • 1121 views

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)

 

Best answer by EL_10548943

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"

1 reply

EL_1054894312-AmethystAuthorAnswer
12-Amethyst
January 12, 2023

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"

KenFarley
21-Topaz II
January 12, 2023

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.