Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello everyone,
I am trying to get the minimum amount based on selecting few subvendors
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.
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
Solved! Go to 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]))
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:
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 @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.
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 @Anonymous
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_KdRfGRFn3IAkTWsx14BQ5jnUMLFF_3mEt6J-kXnBQ?e=BkYG9q
https://cscishell-my.sharepoint.com/:u:/g/personal/mseeram_csci_build/ETsukNaxxbNJrqzeej5b4G8BMIp4Cmrd-7CuGVE01623zA?e=2GRJkS
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]))
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.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |