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

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

calculet 2 feild

hi,

i wrote in the script the next line:

 

=if(Match([destinetion],'3' and [target],'A'),'123')

but i get nothing in the result.

when i separate it it's o,k.

please help me.

thanks'

Labels (1)
1 Solution

Accepted Solutions
sivarajs
Specialist II
Specialist II

Try this

=if(Match(destination,'3' )and Match( [target],'A'),'123')

View solution in original post

2 Replies
sivarajs
Specialist II
Specialist II

Try this

=if(Match(destination,'3' )and Match( [target],'A'),'123')

Not applicable
Author

HI

plee see the attachement.

since within match() function we does not take and operator.

and match() function work on selection.

hope this helps you.

=if(Match(destination,'3') and MATCH(target,'A'),'123')