Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Average grouping by serial number in script, how to?

Hey guys,

I have a field called "Serial Number", and another one called "Flight time", I would like to make a Flight Time average per serial number, in the script...

How do I create that??

2 Replies
MK_QSL
MVP
MVP

MainTable:

Load

     [Serial Number]

     [Flight time]

     anotherField1

     anotherField2

From TableName;

Join

Load

     [Serial Number]

     Avg[Flight time] as AvgFlightTime

Resident MainTable

Group By [Serial Number];

Not applicable
Author

Please use Left Join instead of Join