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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Calculating sum-total of measure

 

Hello - I created tis kind of complicated measure to calculate "the Amout to meet goal" - 

AmtToMeetGoal = IF(HASONEFILTER('Sub List'[ContractNumber]),IF((Sumx(DISTINCT('Sub List'[ContractNumber]),(Maxx(Distinct('Sub List'[ContractNumber]),Max('Sub List'[GoalDollars])))))>[AmountB4SlicerPeriod], ((Sumx(DISTINCT('Sub List'[ContractNumber]),(Maxx(Distinct('Sub List'[ContractNumber]),Max('Sub List'[GoalDollars])))))-[AmountB4SlicerPeriod]),0))
 
But for some reason the total of this measure doesn't show up and when I tried to create multiple measures and combined them to one at the end - I get the wrong total, even though that the list of Amounts that are showing on table is correct. If I export data to excel and sum it up the amounts, I'll get the right number. But for some in Power BI, the total either wrong or it's not showing up.
 
TotalMeasure Erro.PNG
 

 

Could you please help me solve this problem, if it's possible - Thank you in advance.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

I did it!!! I used the SUMMARIZE function and that solve the problem !!

View solution in original post

3 REPLIES 3
v-juanli-msft
Community Support
Community Support

Hi @Anonymous

How about this measure:

AmtToMeetGoal =
VAR sum1 =
    IF (
        (
            SUMX (
                DISTINCT ( 'Sub List'[ContractNumber] ),
                (
                    MAXX (
                        DISTINCT ( 'Sub List'[ContractNumber] ),
                        MAX ( 'Sub List'[GoalDollars] )
                    )
                )
            )
        )
            > [AmountB4SlicerPeriod],
        (
            (
                SUMX (
                    DISTINCT ( 'Sub List'[ContractNumber] ),
                    (
                        MAXX (
                            DISTINCT ( 'Sub List'[ContractNumber] ),
                            MAX ( 'Sub List'[GoalDollars] )
                        )
                    )
                )
            )
                - [AmountB4SlicerPeriod]
        ),
        0
    )
RETURN
    IF (
        HASONEVALUE ( 'Sub List'[ContractNumber] ),
        Sum1,
        SUMX ( 'Sub List', sum1 )
    )

Best Regards

Maggie

 

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

I did it!!! I used the SUMMARIZE function and that solve the problem !!

Anonymous
Not applicable

It works but it gives me the wrong total :(. The amount that listed on column is correct but for some reason when it comes to total, it just doesn't sums it up right.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.