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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
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;