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

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

Help on SetAnalysis

HI,

Please any one can help me to convert this below code into Setanalysis

if( not isnull([Platform]),[ flag] &[Id] ))

Note:- [ flag] &[Id] -  Due to this am getting allocated memory exceeded in the chart in QlikView 11

So am thinking that set analysis can help this out.

Regards,

Ankit Modi

4 Replies
Jason_Michaelides
Partner - Master II
Partner - Master II

I think I'd create a new field based on [ flag] & [Id] in the script.  Is that doable?

Jason

Anonymous
Not applicable
Author

That could be the last option..

Regards,

Ankit

Jason_Michaelides
Partner - Master II
Partner - Master II

I would almost always try and push as much logic into the script as possible. Saves on server resources in expressions etc (unless you are creating lots of superfluous data of course!)

Gabriel
Partner - Specialist III
Partner - Specialist III

Hi,

Have you tried

If(([Platform]<>NULL),[ flag] &[Id] ).