Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn 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;