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
[SOLVED] Creating attribute with unkonwn value
Would appreciate any help on how to set value to unkown when creating a new attribute. I'm using the "Generate Attribute" operator a the function expression is something like:
if(contains(Q4, "Text#1"), 1, if(contains(Q4, "Text#2"), 2, if(contains(Q4, "Do not know"), ???, "")))
Thx.
if(contains(Q4, "Text#1"), 1, if(contains(Q4, "Text#2"), 2, if(contains(Q4, "Do not know"), ???, "")))
Thx.
0
Answers
Welcome!
There's a good run through on this at ..
http://rapid-i.com/rapidforum/index.php/topic,3002.0.html
and here's an example for you - basically you declare what a missing value looks like, and the operator converts it to RM internal format. HTH
H
Cheers, Filipe