Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to sum Loads by the unique instances of each Lane ID, I tried using sum distinct but that gave me 28, not 31.
Not sure if I should be using set analysis for this, can someone share their thoughts on this?
Thank you
Hi, try this.
=Sum(Aggr(Only(Loads), Lane, [Lane ID], Loads))
Thank you, this worked perfect!