Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have this metric to count the numbers of meetings that happened inside support tickets on each day:
fct__comercial__atividades__reunioes goes to fct__comercial__atividades__reunioes__vinculo__tickets using atividade_id
Solved! Go to Solution.
Try
Num companies =
VAR BaseTable =
ADDCOLUMNS (
SUMMARIZE (
fct__cx__ticket,
fct__cx__ticket[empresa_id],
dim__cx__tickets[fct__cx__tickets using ticket_id]
),
"@num", [Qtd Reuniões | Tickets]
)
VAR GroupedTable =
GROUPBY (
BaseTable,
fct__cx__ticket[empresa_id],
"@total", SUMX ( CURRENTGROUP (), [@num] )
)
VAR Result =
COUNTROWS ( GroupedTable )
RETURN
Result
Hi @EugenioProlog ,
I hope the information provided is helpful.I wanted to check whether you were able to resolve the issue with the provided solutions.Please let us know if you need any further assistance.
Thank you.
Hi @EugenioProlog ,
May I ask if you have resolved this issue? Please let us know if you have any further issues, we are happy to help.
Thank you.
Hi @EugenioProlog ,
Thank you for reaching out to Microsoft Fabric Community.
Thank you @johnt75 for the prompt response.
I wanted to check if you had the opportunity to review the information provided and resolve the issue..?Please let us know if you need any further assistance.We are happy to help.
Thank you.
I'm not sure if this will work, but you could try opening DAX Query View and running
EVALUATE
SUMMARIZECOLUMNS (
fct__cx__ticket[empresa_id],
"@num", [Qtd Reuniões | Tickets]
)
If that gives correct numbers then you could embed it in a measure like
Num companies =
COUNTROWS (
FILTER (
SUMMARIZECOLUMNS (
fct__cx__ticket[empresa_id],
"@num", [Qtd Reuniões | Tickets]
),
NOT ISBLANK ( fct__cx__ticket[empresa_id] )
)
)
That did not work
Try
Num companies =
VAR BaseTable =
ADDCOLUMNS (
SUMMARIZE (
fct__cx__ticket,
fct__cx__ticket[empresa_id],
dim__cx__tickets[fct__cx__tickets using ticket_id]
),
"@num", [Qtd Reuniões | Tickets]
)
VAR GroupedTable =
GROUPBY (
BaseTable,
fct__cx__ticket[empresa_id],
"@total", SUMX ( CURRENTGROUP (), [@num] )
)
VAR Result =
COUNTROWS ( GroupedTable )
RETURN
Result
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!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 49 | |
| 44 |