Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi, I am trying to write a simple new measure calculation for this test report
I have 2 tables like below, code refers to an album
I just want to do something like albumlength = calculate(sum(album title Abbey Rd
etc
Any help greatly appreciated
Solved! Go to Solution.
@Jay2077 , based on what I got a measure like this should do
calculate(sum(Table1[length]), filter(Table1,Table1[song title] = "Abbey Rd"))
Hi !
You can solve this by proper Data Modelling.
You can create a 1-Many relationship between [Album] & [Songs] table based on [Code] column.
Now you can simply, create a measure to calculate sum of lenght like below;
Album Lenght = SUM(Song[Lenght])
This will simple give you Total Length of Album if you plot a chart against Album.
Regards,
Hasham
Thank you
Can't get this working
if the top table is called Sheet 1 and the 2nd is called year how would i write your code ?
Thank you
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.