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

How to find percentage with duplicate targets

Hi Team,

 

What would be best way to find the percentage with duplcate Target values.

 

There are duplicate values in Target column hence causing issue to me

 

My Data is as below:

SupplierPeriodValueTarget

S1P120200
S1P230200
S2P140250
S2P250250
S3P110100

 

I Need to find percentage of work completed for selected suppliers in filter in terms of Value against the Target.

 

Regards

Deepak

1 ACCEPTED SOLUTION
ChielFaber
Super User
Super User

If the objective is to sum the values of the two periodes and keep the target consistent. You can do a group by

on Supplier with the UI group by function. Choose advanced.

 

Sum the value column

Max the Target column.

You then get de value per supplier and the target without the duplicate rows. You could then just add a custom column with the needed calculation to get to the desired percentage.

View solution in original post

2 REPLIES 2
v-jingzhang
Community Support
Community Support

Hi @Deepak3Arora 

 

Here are some DAX methods for your reference. If you want to add a calculated column in the original table, you can try below column code. 

Column = 
DIVIDE (
    CALCULATE ( SUM ( 'Table'[Value] ), ALLEXCEPT ( 'Table', 'Table'[Supplier] ) ),
    CALCULATE ( MAX ( 'Table'[Target] ), ALLEXCEPT ( 'Table', 'Table'[Supplier] ) )
)

vjingzhang_0-1680156018998.png

 

If you want to use a measure, you can try below measure and add it to a visual along with Supplier column. 

Measure 2 = DIVIDE(SUM('Table'[Value]),MAX('Table'[Target]))

vjingzhang_1-1680156174422.png

 

If you want a new table with DAX, you can try 

vjingzhang_2-1680156486327.png

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

ChielFaber
Super User
Super User

If the objective is to sum the values of the two periodes and keep the target consistent. You can do a group by

on Supplier with the UI group by function. Choose advanced.

 

Sum the value column

Max the Target column.

You then get de value per supplier and the target without the duplicate rows. You could then just add a custom column with the needed calculation to get to the desired percentage.

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.

Top Solution Authors
Top Kudoed Authors