Skip to main content

QlikView App Dev

Discussion Board for collaboration related to QlikView App Development.

Announcements
Action-Packed Learning Awaits! QlikWorld 2023. April 17 - 20 in Las Vegas: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
benjamincafeo
Contributor
Contributor

Qlikview Search Box Help

So I am trying to do a search in a text string where I need to search for 'A' and ('B' or 'C')

  • AA (no)     BB (no)     CC (no)   BC (no)    CB (no)
  • AB (yes)   BA (yes)    AC (yes)   CA (yes)

I know that:

  • (*B* ^ *C*) is B or C
  • (*A* & *B*) is A and B
  • (*A* & *C*) is A and C

I tried (*A* & (*B* ^ *C*)) but that did not work.

Can anyone show me how to do this or if it is even possible?

Thanks!

1 Solution

Accepted Solutions
sunny_talwar

This falls into swuehl‌ territory. He wrote this amazing article - Compound Search - demystified

View solution in original post

2 Replies
sunny_talwar

This falls into swuehl‌ territory. He wrote this amazing article - Compound Search - demystified

benjamincafeo
Contributor
Contributor
Author

Thanks!  It had exactly what I needed.