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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi, I need help about a measure/calculated column:
IDCLIENTE MONTH NUM_TICKETS TICKETS_TOTAL SLICER OF MONTH
1 JUNY 2 6 JUNY X
1 JULY 4 6 JULY X
AGOUST -
I need to get tickets_total. it have to be responsive with the month slicer. If Agoust is not selected then it wont be included in tickets_total
Mant Thanks
Solved! Go to Solution.
Hi @Anonymous
Create a Measure
Measure = CALCULATE(SUM(Sheet9[number]),FILTER(ALLSELECTED(Sheet9),[client id]=MAX([client id])))
Best Regards
Maggie
Hi @Anonymous
Create a Measure
Measure = CALCULATE(SUM(Sheet9[number]),FILTER(ALLSELECTED(Sheet9),[client id]=MAX([client id])))
Best Regards
Maggie
Hi, I need help about a measure/calculated column:
IDCLIENTE MONTH NUM_TICKETS TICKETS_TOTAL SLICER OF MONTH
1 JUNY 2 6 JUNY X
1 JULY 4 6 JULY X
AGOUST -
I need to get tickets_total. it have to be responsive with the month slicer. If Agoust is not selected then it wont be included in tickets_total
Mant Thanks
How about this:
Tickets Total = CALCULATE ( SUM ( Table[Num_Tickets] ), ALLSELECTED ( Table[Month] ) )
Hi @AkhilAshok. Thats a nice solution, but the problem is that the unselected months appear in my table. Example
CLIENTID MONTH NUM_TICKETS TOTAL_TICKETS MONTH SLICER
1 JUNY - 9 JUNY X
1 JULY 4 9 JULY X
1 AGOUST 5 9 AGOUST -
Thanks for your help
Proud to be a PBI Community Champion
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.