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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
ioannagr
Creator III
Creator III

avg aggr count load editor equivalent

 

This is my  in-app script

avg(aggr(count(ID)), date)

But how can I do it in data load editor?

I'm assuming like

Load avg(count(ID))

resident Table

group by date;

 

Please correct this if it's wrong

 

thank you in advance

1 Reply
sunny_talwar
MVP
MVP

May be this if you are looking to calculate the Avg across the board (meaning this was shown in a text box object)

LOAD Avg(ID_Count);
LOAD Date,
Count(ID) as ID_Count
Resident ...
Group By Date;