Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Total de totales mensuales

Hola a todos,

Tengo una tabla de clientes y estoy tratando de contar el total único de cada mes, por ejemplo, compruebe la siguiente tabla

ClienteMes
1231
1231
12342
1233
12343
12345

4

Estoy tratando de crear una fórmula más optimizada del siguiente código DAX

CALCULATE (
        DISTINCTCOUNT ( 'table'[customer] ),
        KEEPFILTERS ( 'table'[Month] = 1 )
    )

+
CALCULATE (
        DISTINCTCOUNT ( 'table'[customer] ),
        KEEPFILTERS ( 'table'[Month] = 2 )
    )

+

CALCULATE (
        DISTINCTCOUNT ( 'table'[customer] ),
        KEEPFILTERS ( 'table'[Month] = 3 )
    )

+

CALCULATE (
        DISTINCTCOUNT ( 'table'[customer] ),
        KEEPFILTERS ( 'table'[Month] = 4 )
    )

1 ACCEPTED SOLUTION
ChrisMendoza
Resident Rockstar
Resident Rockstar

@Mohannad17 - ¿Estás tratando de lograr:

image.png

Measure = 
CALCULATE(
    DISTINCTCOUNT('Table'[customer]),
    ALLEXCEPT(
        'Table',
        'Table'[month]
    )
)





Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



View solution in original post

2 REPLIES 2
v-yangliu-msft
Community Support
Community Support

Hola @Mohannad17 ,

Estos son los pasos que puede seguir:

1. Crear medida.

Measure =
CALCULATE(COUNT('Table'[customer]),FILTER('Table','Table'[month]=MAX('Table'[month])))

2. Resultado

v-yangliu-msft_0-1607475859228.png

Puede descargar el archivo PBIX desde aquí.

Saludos

Liu Yang

Si este post ayuda,entonces considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.

ChrisMendoza
Resident Rockstar
Resident Rockstar

@Mohannad17 - ¿Estás tratando de lograr:

image.png

Measure = 
CALCULATE(
    DISTINCTCOUNT('Table'[customer]),
    ALLEXCEPT(
        'Table',
        'Table'[month]
    )
)





Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.