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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
sowmi
Creator
Creator

Two values from same field as another value

Hi,

How to add Two values coming from same field as another field in  script

Field 1

A

B

C

D

E=A+B 

 

Labels (2)
1 Solution

Accepted Solutions
sowmi
Creator
Creator
Author

If(Field1 ='A','E',

If(Field1='B','E')) as Field1

It worked ,either  we can use pick (Match())

 

 

View solution in original post

2 Replies
Usama
Creator
Creator

Hi,

1- You can create flags

2- Can you attach sample qvf so can try on that?

Thanks

From Nothing - To Something - To Everything
sowmi
Creator
Creator
Author

If(Field1 ='A','E',

If(Field1='B','E')) as Field1

It worked ,either  we can use pick (Match())