Skip to content

Instantly share code, notes, and snippets.

@ralfbecher
Created February 16, 2014 15:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ralfbecher/9035687 to your computer and use it in GitHub Desktop.
Save ralfbecher/9035687 to your computer and use it in GitHub Desktop.
QlikView textbox object and chart fields (straight table) can only show a text length of 65,535 characters. If the length of the text exceeds this size an empty textbox/field is shown which is a bit confusing. This can easily occur when a Concat aggregation is used.
One should use a Concat aggregation on high amount of values with a left always:
=Left(Concat(DISTINCT Number,','), 65535)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment