Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
hic
Former Employee
Former Employee

Today, the Qlik engine has some bugs in the area of a search and a subsequent select. These affect both interactive searches and searches in Set Analysis expressions. We are working on fixing them. However, one of these coming bug fixes may cause some backward incompatibility. This post explains what the bug fix will mean, and what you can do to avoid future problems.

When you use Set analysis, you can choose to have a condition in the form of a list of values in the Set expression, or you can choose to have a rule-based definition - a search for field values.

Examples of hard coded lists:

Sum( {$<Year = {2013,2014,2015}>} Sales)
Sum( {$<Country = {'Australia','Canada','France'}>} Sales)

Examples of searches:

Sum( {$<Year = {">=2013"}>} Sales)
Sum( {$<Country = {"Austr*"}>} Sales)
Sum( {$<Customer = {"=Sum(Sales)>100000"}>} Sales)

All the above constructions work today, and they will work correctly also after the bug fix.

Note the double quotes in the search expressions. These define the search strings, and between them you can write any search string – the same way as you would in a list box search.

However, you should not use single quotes to define a search string.

Single quotes are reserved for literals, i.e. exact matches. Hence they should be used when you want to make a list of valid field values, like the above list of explicit countries. But they should not be used for searches. Single quotes imply a case sensitive match with a single field value.

This difference between single and double quotes has been correctly described in the reference manual that states that searches are “always defined by the use of double quotes”. Also, all examples with literal field values in the documentation use single quotes.

Now to the bug: QlikView and Qlik Sense currently do not respect the above difference between single and double quotes. Instead, strings enclosed in single quotes are interpreted as search strings. As a consequence, it is not possible to make case sensitive matches with field values, something which you sometimes want to do.

This bug will be fixed in the coming November releases of Qlik Sense and QlikView. Then, wildcards in strings enclosed by single quotes will no longer be considered as wildcards. Instead, the strings will be interpreted as literals, i.e. the engine will try to match the string with a field value containing the ‘*’ character. The same logic will apply also to relational operators and equals signs.

Unfortunately, this bug has been incorrectly utilized by some developers: I have seen Set Analysis expressions with correct search strings, but erroneously enclosed in single quotes; for example

Sum( {$<Country = {'Austr*'}>} Sales)

This search should instead have been written

Sum( {$<Country = {"Austr*"}>} Sales)

Hence, there are documents with expressions that will not work in the corrected algorithm. However, the bug fix will be implemented in such a way that old documents will use the old logic, and new documents will use the new logic. In addition, it will be possible to force the new logic for all documents by using a parameter in Settings.ini.

You can of course also change the single quotes in existing search strings to double quotes, and the expression will continue to do what it always has done.

This post is mainly to give you a heads-up on a coming change, and give you a chance to make a quality control of your own documents. We will publish more information as we get closer to the release.

HIC

 

Further information related to Set Analysis and Searches:

The Search String

Introduction to Set Analysis (video) - Part 1

Set Analysis - Part 2 - Cool Stuff You Can Do (video)

61 Comments
tresesco
MVP
MVP

No quotes: Case insensitive. Asterisk is not allowed.

Single quotes: Case sensitive. Asterisk is interpreted as Char(42).

Double quotes: Case insensitive. Asterisk is interpreted as a wildcard.

Does this also mean that, we still don't have an option to perform direct 'case sensitive wildcard search' in set analysis? That would have been a great plus.

0 Likes
6,481 Views
sunny_talwar

perform direct 'case sensitive search' in set analysis?

What would that mean? Isn't Single quotes going to allow you to do case sensitive search?

0 Likes
6,481 Views
tresesco
MVP
MVP

Sunny, I meant wildcard search.

6,481 Views
NZFei
Partner - Specialist
Partner - Specialist

Could anyone clarify one thing please? For the old expressions in the old version of QlikView, after we upgrade the QlikView server to the November 2017 version, will they work or not work.

If they will not work, we will have to check through all the expressions before we upgrade QV, is that correct?

Thanks

0 Likes
6,481 Views
tresesco
MVP
MVP

xufei123

They WILL work without any changes. This question has already been addressed in saying :

However, the bug fix will be implemented in such a way that old documents will use the old logic, and new documents will use the new logic.

Also, please check the comments above - it has already been discussed.

0 Likes
6,471 Views
Gysbert_Wassenaar

You can use string functions like Left, Mid, Right and sometimes Index for that. Not ideal, but not impossible.

0 Likes
6,471 Views
vgutkovsky
Master II
Master II

tresesco‌ chr(42) would mean that an asterisk would be interpretted as a literal character. So if you write ={'David*'} that would only return records where the asterisk is part of the field value itself. The asterisk won't be treated as a wildcard.

0 Likes
6,471 Views
Anonymous
Not applicable

Hi Henric!

Will this also fix "parameter parsing" when I want to inject a SET ANALYSIS via $1 into a variable?

Today Qlik always splits parameters with ever comma.  Even when I use escape parameters  to hand over for example Year={2015},Country={AT} to  the variable. See examples below

set_analysis_Parameter_Parsing.png

I'm aware of some workaround to overcome the issue [ Use the (A|B|C) Syntax for multiple values; replace comma, hand over a variable that contains the SET]; but still it would be so much easier to use and maintain if Qlik could come up with a solution here.

In my imagination we can at some point use this feature to hand over parameters to MASTER ITEM expressions. This would help so much to provide "SELF Service Experience", without  creating dozens of MASTER ITEMs where just the SET-part is different...

6,471 Views
hic
Former Employee
Former Employee

Not sure. I'll need to investigate.

6,471 Views
tresesco
MVP
MVP

gwassenaar‌, vgutkovsky

Thanks.

I was actually emphasizing more on

direct 'case sensitive wildcard search'

Alternatives are there I agree. With double quotes, we would be able to search, but that is unfortunately case-insensitive. Case sensitive match (read-'no search') would be possible using single quotes. That way, we are left with only 'case sensitive search (read wildcard)'; and that is not there. Yes, indirect solutions are there.

0 Likes
6,471 Views