Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
Solved! Go to Solution.
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.
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.
@ermak , I am assuming HitId is the minimum session can be found
calculate( Sum(Table[Cost]), filter( Table,Table[HitId] = min(Table[HitID])), allexcept(Table, Table[SessionID]))
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!