Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I'm having an issue with my master calendar. It's worked previously but we've recently made some changes to our databases and it now returns this error during load:
Hi Please read the below link. Might be useful
https://community.qlik.com/t5/Connectivity-Data-Prep/Autogenerate-count-is-out-of-range/td-p/25781
Is there actually a Date field being loaded prior to this statement? This error most commonly occurs when trying to Autogenerate a non-numeric (or negative) number of values, e.g.
Load 1 as Field
Autogenerate FieldValueCount('ThisFieldDoesNotExist');
You could work around it by using alt(FieldValueCount('Date'),0) instead, which will autogenerate 0 rows if Date is missing (but at least it won't crash).