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
jprousseau
Frequent Visitor

Help with to Total a Measure of a Measure total

Hi there

 

can someone please help me with to total a measure of a measured column.

 

The m_DailyTarget which is a multiplication of 2 measues does not want to add up in total column.

 

Please see the screenshot of all the dax and fields.

 

Thanks

jprousseau_1-1616580983306.png

 

1 ACCEPTED SOLUTION
Angith_Nair
Helper V
Helper V

Hi @jprousseau ,

Change three measures like this..

 

 

m_DaysSelected = 
SUMX (
    VALUES ( NBAdminTasks[assignedtodisplayname] ),
    CALCULATE ( DISTINCTCOUNT ( NBAdminTasks[completiontime - Date only] ) )
)


m_DailyTarget = 
SUMX (
    VALUES ( NBAdminTasks[assignedtodisplayname] ),
    CALCULATE ([m_DaysSelected]* [m_DailyTasks])
)


m_AveTaskTarget% = 
SUMX (
    VALUES ( NBAdminTasks[assignedtodisplayname] ),
    CALCULATE ([m_TaskCount]/[m_DailyTarget] *100 )
)

 

 

Please find the pbix file here .
If this works then please mark this as a solution. Appreciate with Kuddos.

View solution in original post

8 REPLIES 8
Angith_Nair
Helper V
Helper V

Hi @jprousseau ,

Change three measures like this..

 

 

m_DaysSelected = 
SUMX (
    VALUES ( NBAdminTasks[assignedtodisplayname] ),
    CALCULATE ( DISTINCTCOUNT ( NBAdminTasks[completiontime - Date only] ) )
)


m_DailyTarget = 
SUMX (
    VALUES ( NBAdminTasks[assignedtodisplayname] ),
    CALCULATE ([m_DaysSelected]* [m_DailyTasks])
)


m_AveTaskTarget% = 
SUMX (
    VALUES ( NBAdminTasks[assignedtodisplayname] ),
    CALCULATE ([m_TaskCount]/[m_DailyTarget] *100 )
)

 

 

Please find the pbix file here .
If this works then please mark this as a solution. Appreciate with Kuddos.

Thank you it worked. Just changed the last measure to AVERAGEX

 

m_AveTaskTarget% = 
AVERAGEX (
    VALUES ( NBAdminTasks[assignedtodisplayname] ),
    CALCULATE ([m_TaskCount]/[m_DailyTarget] *100 )
)

 

Angith_Nair
Helper V
Helper V

Hi @jprousseau ,

Try to use this measure...

 

m_DailyTarget =
SUMX ( NBAdminTasks, 'NBAdminTasks'[m_DaysSelected] * [m_DailyTasks] )

m_AveTaskTarget% =
AVERAGEX ( NBAdminTasks, [m_TaskCount] / [m_DailyTarget] )

If this works, kindly mark it as a solution. Appreciate with kuddos.

 

 

not working 

jprousseau_0-1616594633975.png

 

amitchandak
Super User
Super User

@jprousseau , can you share the formula in text format

 

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Where can i copy/drop the file to?

Thanks

You can upload it to google drive or dropbox or One drive and share the link here...

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.