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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Nos gustaría mostrar el recuento total en una cuadrícula de tabla del resultado COUNTA (Cuenta el número de registros que no están vacíos). Pero mantenga el texto original.
Similar a la siguiente captura de pantalla.
Power BI muestra el recuento en la parte inferior, pero cambia los valores de detalle al recuento individual. En este caso 1.
Cualquier sugerencia sería muy apreciada !!!
Solved! Go to Solution.
ConcatX =
VAR __temp =
CALCULATETABLE ( 'Table (2)', 'Table (2)'[Column2] <> BLANK () )
RETURN
IF (
HASONEVALUE ( 'Table (2)'[Column1] ),
CONCATENATEX ( 'Table (2)', 'Table (2)'[Column2], " | " ),
COUNTROWS ( __temp )
)
Proud to be a Super User!
Measure =
VAR __temp =
CALCULATETABLE(
'Table',
'Table'[Priority] <> BLANK()
)
RETURN
COUNTROWS(__temp)
Proud to be a Super User!
Hola Chris, gracias por su sugerencia, pero necesitamos el valor de recuento en la parte inferior de la columna HECHO. Idéntico a cómo se muestra Excel. ¿Alguna sugerencia?
ConcatX =
VAR __temp =
CALCULATETABLE ( 'Table (2)', 'Table (2)'[Column2] <> BLANK () )
RETURN
IF (
HASONEVALUE ( 'Table (2)'[Column1] ),
CONCATENATEX ( 'Table (2)', 'Table (2)'[Column2], " | " ),
COUNTROWS ( __temp )
)
Proud to be a Super User!
Excelente; Funcionó perfectamente. ¡¡¡Gracias!!!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.