The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Answers
Generally, can use the && operator for a logical AND and || for a logical OR concatenation of your conditions.
So the expression would be something like
if(contains(...) || contains(...) || contains(...), 1, 0)
But if() in Generate Attributes has three parameters anyway, so you can put your conditions inside the if() if you want.
if(contains(...), 1,
if(contains(...), 1,
if(contains(...), 1,
0
)
)
)
Regards,
Balázs