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

Table not return the correct total of a measure

i created a measure to count the total number of orders a customer did on the months, but i saw the total is wrong. I need help to correct this total  (1+1+1+1+1+2+2 =9)

 

Titulo1.png

 

This is my measure

 
.Measure1 =
IF (
MAX ( 'Calendario1'[Date] ) <= EOMONTH ( TODAY (); -13 );
BLANK ();
IF (ISBLANK ( DISTINCTCOUNT ( fOrder[K_NumberOrder] ) );0;DISTINCTCOUNT ( fOrder[K_NumberOrder] )))

 

Thanks

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

I was close, but this will work:

.Measure1 = 
SUMX( VALUES ( Calendario1),
    CALCULATE(
        IF (
            MAX ( 'Calendario1'[Date] ) <= EOMONTH ( TODAY (), -13 ),
            BLANK (),
        IF (
                ISBLANK ( DISTINCTCOUNT ( fOrder[K_NumberOrder] ) ),
                0,
                DISTINCTCOUNT ( fOrder[K_NumberOrder] )
            )
       )
    )
 )

sumx of values.png

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Without seeing the actual data, you need to add in SUMX( Values( Date[Month]) to your measure. Maybe something like this, but more of a guess:

.Measure1 =
IF (
    MAX ( 'Calendario1'[Date] )
        <= EOMONTH (
            TODAY ();
            -13
        );
    BLANK ();
    IF (
        ISBLANK (
            DISTINCTCOUNT ( fOrder[K_NumberOrder] )
        );
        0;
        SUMX ( VALUES ( Date[Month]);
        DISTINCTCOUNT ( fOrder[K_NumberOrder] )
        )
    )
)
Anonymous
Not applicable

Hey @Anonymous ,  here is my  data 

 

https://1drv.ms/u/s!Apt7lzq2XcE5jCXGwG2vlblnXDOX

 

Thanks

Anonymous
Not applicable

I was close, but this will work:

.Measure1 = 
SUMX( VALUES ( Calendario1),
    CALCULATE(
        IF (
            MAX ( 'Calendario1'[Date] ) <= EOMONTH ( TODAY (), -13 ),
            BLANK (),
        IF (
                ISBLANK ( DISTINCTCOUNT ( fOrder[K_NumberOrder] ) ),
                0,
                DISTINCTCOUNT ( fOrder[K_NumberOrder] )
            )
       )
    )
 )

sumx of values.png

Anonymous
Not applicable

Worked, thanks a lot @Anonymous 

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.