The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
User | Count |
---|---|
25 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
12 | |
10 | |
10 | |
9 |