Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
vikasshana
Creator II
Creator II

Error in expression:Too complex, more than 100 levels nesting

Hi All,

I'm using 249 IF statements in the Qlikview load statement and receiving the below error message. I've googled the error message and have read in some blogs and some one stated that there are only 100 IF statements allowed in the load statement.

How I can resolve this issue?

Regards,

Vikas

1 Solution

Accepted Solutions
sunny_talwar

Try like this:

Pick(WildMatch(SYSTEM_NAME, '?388*', '?392*', '?832*'), 'Jamaica', 'Japan', 'Jersey')

View solution in original post

7 Replies
Anil_Babu_Samineni

Read here also https://community.qlik.com/thread/179549

Probably, hic‌ know till how many Nested can work.

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
sunny_talwar

Use Pick function instead of if

vikasshana
Creator II
Creator II
Author

I tried pick function instead of if and it still says the same.

sunny_talwar

Can you share a part of the expression how it looked when you used if and how it looked after you changed to pick?

vikasshana
Creator II
Creator II
Author

IF:

if(SYSTEM_NAME like '?388*' , 'Jamaica',
if(SYSTEM_NAME like '?392*' , 'Japan',
if(SYSTEM_NAME like '?832*' , 'Jersey',)))

PICK:

pick(SYSTEM_NAME like '?388*' , 'Jamaica',

pick(SYSTEM_NAME like '?392*' , 'Japan',

pick(SYSTEM_NAME like '?832*' , 'Jersey',)))

sunny_talwar

Try like this:

Pick(WildMatch(SYSTEM_NAME, '?388*', '?392*', '?832*'), 'Jamaica', 'Japan', 'Jersey')

vikasshana
Creator II
Creator II
Author

thanks for the Sunny, It's working...!!!