Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to compare string type variable values through if statement

Hi All,

Below is my current bar chart. I have a requirement that instead of 4 type of user types coming from database this chart have only 2 types of user type. From DB we will have 4 user type data but in chart it shows only 2 i,e, employee and contractor. If user type is either employee or intern then they both combine to employee and if usertpe is contractor or customer then they both combine and show as contractor. Below is the script i am using to load data and tied with if statement(currently commented) bit didn't worked.

userType chart.png

script.png

5 Replies
andrey_krylov
Specialist
Specialist

If(Match(user_emp_type, 'Employee', 'Intern'), 'Employee', 'Contractor') as user

bwisealiahmad
Partner - Specialist
Partner - Specialist

Hi,

Apply what Andrey said above in script and then use that as dimension.

Should be good

Best,

Ali A

bwisealiahmad
Partner - Specialist
Partner - Specialist

Also,

Please stop making threads with the exact same question. I count 3 threads with the exact same question?

Best,

Ali A

Anonymous
Not applicable
Author

Thanks for your response. Actually there was some issue due to which while submitting the post it was throwing some error but actually it was submitted at back end.

Anonymous
Not applicable
Author

Thanks Andrey, solution provided by you worked perfectly.