Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Create field based on other fields

Hei,

Is it possible to create a new field based on the value of other fields?

Basically i want to cross reference different fields and return some category.

if(field1 == "1" and field2=="2") Category = "C1"

else if(field3 == "test") Category = "c2"

else

     Category = "C3" (all others)

Please don't hesitate to ask if i am being unclear.

Best Regards,

Lasse Rolstad

1 Solution

Accepted Solutions
swuehl
MVP
MVP

LOAD

     field1,

     field2,

     field3,

     if(field1 = 1 and field2 = 2,'C1',

          if(field3='test', 'c2',

               'C3'))                                   as Category,

     ...

View solution in original post

2 Replies
swuehl
MVP
MVP

LOAD

     field1,

     field2,

     field3,

     if(field1 = 1 and field2 = 2,'C1',

          if(field3='test', 'c2',

               'C3'))                                   as Category,

     ...

Not applicable
Author

Again you come to my rescue. Thanks alot