Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hello Colleagues!
I have been trying for a few days to extract the price per package and there is no way. I put you in context to see if you can help me.
I have the following table where I have a price per package and a price per package content. I need to calculate the price by subtracting all the content prices that contain an X in the comparison data column.
In the example I show I need to be able to do the following calculation:
1083-0-376-490 = 217€ (I need this value for each row that contains PCE as a package)
Could you tell me how to do it?
Thank you very much in advance.
Hi @Saray_kh ,
According to your description, here are my steps you can follow as a solution.
(1) My test data is the same as yours.
(2) We can create a measure.
Measure =
var _a= MAX('Table'[Package price])
var _b= CALCULATE(SUM('Table'[Content price]),FILTER(ALL('Table'),'Table'[Package]=MAX('Table'[Package]) && 'Table'[Comparision Data]="X"))
return _a-_b
(3) Then the result is as follows.
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Nekko! Thank u for your response.
It didnt work for me, but I finally could achieve it by creating a unique table with package and price, and then calculate a dax mesure.
Best Regards,
Saray.
User | Count |
---|---|
65 | |
60 | |
47 | |
33 | |
32 |
User | Count |
---|---|
86 | |
75 | |
56 | |
50 | |
45 |