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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Wildmatch within set analysis.

The below set analysis is not working.I want to do the wildmatch  for Tech and I see the error mark near the % sign ({'*Tech*'}>}%))

=num(avg({$<Name={'*Tech*'}>}%),'#,##0%')


Thank you very much.

1 Solution

Accepted Solutions
rubenmarin1

Hi, I crated a sample data with 'Name' and '%' as fields and this expression works:

=num(avg({$<Name={'*ABS*'}>}%),'#,##0%')

So I don't know why it's not working for you... [%] is a field name?

View solution in original post

3 Replies
tresesco
MVP
MVP

num(avg({$<Name={'*Tech*'}>} FieldName or Expression),'#,##0%')

In place of fieldname/expression, you are putting % . What is this % ?

rubenmarin1

Hi, I crated a sample data with 'Name' and '%' as fields and this expression works:

=num(avg({$<Name={'*ABS*'}>}%),'#,##0%')

So I don't know why it's not working for you... [%] is a field name?

Not applicable
Author

Thank you.It worked for me .