Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi all.
From the screenshot shown above, I would like to filter the serial number first before proceeding to calculate the difference in the higest and lowest voltage within each serial number. Is there a possible way in achieving the above mentioned outcome? Relatively new to power BI so I am quite unsure with how to approach this problem. Any help would be greatly appreciated.
Solved! Go to Solution.
Hi,
I assume you want to create a calculated column.
Please check the below picture and the attached pbix file.
Diff calculated column =
MAXX (
FILTER ( Data, Data[Serial No] = EARLIER ( Data[Serial No] ) ),
Data[Voltage]
)
- MINX (
FILTER ( Data, Data[Serial No] = EARLIER ( Data[Serial No] ) ),
Data[Voltage]
)
Hi,
I assume you want to create a calculated column.
Please check the below picture and the attached pbix file.
Diff calculated column =
MAXX (
FILTER ( Data, Data[Serial No] = EARLIER ( Data[Serial No] ) ),
Data[Voltage]
)
- MINX (
FILTER ( Data, Data[Serial No] = EARLIER ( Data[Serial No] ) ),
Data[Voltage]
)
Thank you!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
7 | |
6 |
User | Count |
---|---|
14 | |
13 | |
11 | |
9 | |
9 |