Forum Discussion
ermak
5 years agoFrequent Visitor
Sum for the first occurrence
Hello! Please help me sum up the price only for the first hits within the sessions. So that 3.33 comes out, not 16.65.
- Anonymous5 years ago
Hi ermak ,
You could try this measure.
Sum for the first occurrence = CALCULATE ( SUM ( 'Table'[Cost] ), FILTER ( ALL ( 'Table' ), [HitID] = CALCULATE ( FIRSTNONBLANK ( 'Table'[HitID], [HitID] ), ALLEXCEPT ( 'Table', 'Table'[SessionID] ) ) ) )The result is this.
You can check more details from here.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
5 years agoNot applicable
Hi ermak ,
You could try this measure.
Sum for the first occurrence =
CALCULATE (
SUM ( 'Table'[Cost] ),
FILTER (
ALL ( 'Table' ),
[HitID]
= CALCULATE (
FIRSTNONBLANK ( 'Table'[HitID], [HitID] ),
ALLEXCEPT ( 'Table', 'Table'[SessionID] )
)
)
)
The result is this.
You can check more details from here.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.