Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP 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
Luminary Alumni
Luminary Alumni

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
Luminary Alumni
Luminary Alumni

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] ).