Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello Guys,
I would like to know I can calculate the difference of the values of two selected coloumns:
The raw data is looking like that:
Time | Pressure 1 | Pressure 2 | Pressure 3 | Pressure 4 |
1 | 3 | 4 | 435 | 3 |
2 | 6 | 4 | 34 | 43 |
3 | 7 | 54 | 87 | 43 |
4 | 454 | 54 | 87 | 34 |
5 | 45 | 45 | 5 | 4 |
6 | 54 | 4 | 2 | 2 |
I would like to use a filter which is showing the data of two selected coloumns from the table and calculating the difference.
At the end, all the selected coloumns, and the calculated differences should be shown on a line chart.
For example:
1) I am selecting with my slicer the coloumns Pressure 2 and Pressure 4.
2) PowerBI is calculating the difference of Pressure 2 and pressure 4.
3) In the line Chart the curve of Pressure 2 and Pressure 4 and Pressure(4-2) is shown.
It is important to have the dynamic function. So based on the selection of the user, the difference should be calculated based on the two selected values.
Hopefully it is understandable and you can help me.
Thank you very much!
Hi, @ZoheilSharifi
You can try the following methods.
In the Power Query, choose first column-Unpivot Other Columns:
Measure1 = CALCULATE(SUM('Table'[Value]),FILTER(ALLEXCEPT('Table','Table'[Time]),[Attribute]=MIN('Table'[Attribute])))
Measure2 = CALCULATE(SUM('Table'[Value]),FILTER(ALLEXCEPT('Table','Table'[Time]),[Attribute]=MAX('Table'[Attribute])))
Difference = [Measure2]-[Measure1]
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The field parameter feature is for cases like yours.
https://learn.microsoft.com/en-us/power-bi/create-reports/power-bi-field-parameters
Thank you very much!
I will try it within the next days and will let you know.
Teally appriciate your support :).
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
13 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
20 | |
14 | |
11 | |
10 | |
10 |