Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
tuan_nguyen
Contributor II
Contributor II

The request exceeds the memory limit

I have some issue when load data.

when i load data with date condition this make exceeds the memory limit but when i change condition then there is no such error

This is dimensions field(image 2)

Thanks

tuan_nguyen_0-1660806421816.png

tuan_nguyen_1-1660806473380.png

 

 

Labels (4)
3 Replies
vinieme12
Champion III
Champion III

The main message here is QlikSense is running out of Ram  trying to calculate this

2 important factors you need to work on

1) Simplify your data model 

2)Simplify your expression

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
tuan_nguyen
Contributor II
Contributor II
Author

Hi,

I check my expression, when i try only like "If(len(FromDate) > 0, [users.id])"  but but will get the error as shown in the picture and have to refresh continuously

tuan_nguyen_0-1660808613022.png

 

vinieme12
Champion III
Champion III

best to create this as a new field  while loading the data as below

,If(len(FromDate) > 0, [users.id]) as NewUserIdField

 

OR

in chart  you can also try 

Aggr(   If(len(FromDate) > 0, [users.id]) [users.id])

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.