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

Calculate min based on the selected values

Hello everyone,
I am trying to get the minimum amount based on selecting few subvendors

Mseeram_0-1647289363251.png
which I could able to achive it, now I need to create an other table comparing each subvendor with the above target column and get the cost difference and the percentage difference, somthing like below.

Mseeram_2-1647289868752.png

 

This should be dynamic, what ever selection I do in the first visual I have to compare the target min value with all the subvendors used in it can some one help me resolve this. I am attaching a sample Pbix and excel that I exported to create the 2nd visual.
https://cscishell-my.sharepoint.com/:u:/g/personal/mseeram_csci_build/EXPvLO5ZX9pOobDcg3d940QBOWo6Qa...

https://cscishell-my.sharepoint.com/:x:/g/personal/mseeram_csci_build/ER9F5DGXy9NIgZ-Ln15TAWgBenVYu8...

Thanks,
Murali

1 ACCEPTED SOLUTION

Hi @Mseeram ,

 

I created three measures.

Target(min) =
CALCULATE (
    MIN ( 'Sample'[Cost] ),
    FILTER (
        ALL ( 'Sample' ),
        [Item Code] = MAX ( 'Sample'[Item Code] )
            && [Item Desc] = MAX ( 'Sample'[Item Desc] )
    )
)
Diff = SUM('Sample'[Cost])-[Target(min)]
Percentage = DIVIDE([Diff],SUM('Sample'[Cost]))

vstephenmsft_0-1648455013034.png

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
Whitewater100
Solution Sage
Solution Sage

Hi:

I struggled a bit and lost my steam. Here is what I have so far. I hope it helps

https://drive.google.com/file/d/1h_jhyWK0HcHaMB4fA0VdkDwmeZEXTJcK/view?usp=sharing 

Hi @Whitewater100 ,

Thanks for your response. 
Murali

Hi @Mseeram ,

 

Could you tell me if your problem has been solved?

If it is, kindly Accept the helpful reply as the solution. More people will benefit from it.

I downloaded the attachment of A and found that %Var is not displayed. I completed it.

vstephenmsft_0-1647503063035.png

 

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-stephen-msft 

Thanks for your response, if you see my original post I have 2 screen shots, 1st one I am selecting some sub vendors and taking min among them (not overall min) and in 2nd screen shot I have to put each sub vendor againest the selected min from the 1st screen shot and calculate the $difference and %difference.
I am reattaching the files here.
https://cscishell-my.sharepoint.com/:x:/g/personal/mseeram_csci_build/ERMK_KdRfGRFn3IAkTWsx14BQ5jnUM...
https://cscishell-my.sharepoint.com/:u:/g/personal/mseeram_csci_build/ETsukNaxxbNJrqzeej5b4G8BMIp4Cm...

Thanks,
Murali

Hi @Mseeram ,

 

I created three measures.

Target(min) =
CALCULATE (
    MIN ( 'Sample'[Cost] ),
    FILTER (
        ALL ( 'Sample' ),
        [Item Code] = MAX ( 'Sample'[Item Code] )
            && [Item Desc] = MAX ( 'Sample'[Item Desc] )
    )
)
Diff = SUM('Sample'[Cost])-[Target(min)]
Percentage = DIVIDE([Diff],SUM('Sample'[Cost]))

vstephenmsft_0-1648455013034.png

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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