Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How do I sum the total leg empty miles for distinct leg values? The answer should be 292 for this dataset. I tried this but it is only counting.
sum(aggr(count(distinct([TMW leg#])),TotalLegEmptyMiles))
TMW leg# | TotalLegEmptyMiles |
263226 | 0 |
260442 | 93 |
260442 | 93 |
260442 | 93 |
260377 | 0 |
260294 | 0 |
260293 | 25 |
260278 | 0 |
260264 | 20 |
260263 | 73 |
260262 | 31 |
260261 | 25 |
260260 | 17 |
260257 | 8 |
292 |
Are you looking for
sum(aggr( Only(TotalLegEmptyMiles), [TMW leg#] ))
?
Are you looking for
sum(aggr( Only(TotalLegEmptyMiles), [TMW leg#] ))
?
Thank you SO much!!!!