Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
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

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;