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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
bnelson111
Creator II
Creator II

Wildcard Across Fields?? Is it possible.

Here is a strange request, I am currently trying to select a wild card match which is working on a single field.

if(wildmatch(PSADATA.tech1 ,'*'&getfieldselections(Defect)&'*'),PSADATA.tech1,null())

I select the wildcard via a list, its working 100% but i what to search across

PSADATA.tech1

PSADATA.tech2

and

or PSADATA.tech3


Any ideas? Thanks Brett

4 Replies
MK_QSL
MVP
MVP

Use

GetCurrentSelections() with no parameter..

instead of GetFieldSelections()

Anonymous
Not applicable

Can you post your sample QVW file. That way we can provide you the right solution.

bnelson111
Creator II
Creator II
Author

Pulling all fields its a large presentation wanted to limit to

PSADATA.tech1

PSADATA.tech2

and

or PSADATA.tech3

bnelson111
Creator II
Creator II
Author

worked around it, con(PSADATA.tech1)&(PSADATA.tech2)&(PSADATA.tech3) as Tests

then used the wildcard.

if(wildmatch(Tests ,'*'&getfieldselections(Defect)&'*'),Tests,null())