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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Calculating frequency at the backend

Is it possible to calculate the frequency of the values in a column on the back end.

If yes, please explain how.

Thanks

Vitul

1 Reply
tresesco
MVP
MVP

Use count() like:

Load

          Count(Field) as Frequency,

          Field

From <> Group By Field;