Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
laciodrom_80
Helper IV
Helper IV

Calculated column / measure for sankey diagram

I've got these two tables:

 

Table1 columns

ID - WEIGHT - SOURCE - DESTINATION

 

Table2 columns

Column: ID - DATE - VALUE

 

The two tables are linked by ID column, I would to have a sankey diagram which uses columns in Table1, but WEIGHT should be a calculated one (or a measure) computed summing all matching (by ID) values in column VALUE of Table2. Then using a slicer by DATE column I would like to filter sankey diagram by date.

 

I've tried this calculated column  WEIGHT = Sum('Table2'[VALUE]) but it doesn't work well   Smiley Frustrated

 

How should I rightly calculate WEIGHT column (also using a measure) ?    

 

Thanks a lot for any hint

 

Luca
Luca
1 ACCEPTED SOLUTION
Thejeswar
Resident Rockstar
Resident Rockstar

Hi @laciodrom_80,

Just create a measure using the following DAX

 

Weight Measure = SUM(Table2[Value]) 

 

 sankey.PNG

The Following are the tables' data. For your reference

 

Table1

 

IDWeightSourceDestination
10.5DestADestB
21.2DestBDestA
32.5DestCDestB

 

Table2

 

IDDateValue
11/1/201820
25/2/201825
34/3/201830

View solution in original post

2 REPLIES 2
Thejeswar
Resident Rockstar
Resident Rockstar

Hi @laciodrom_80,

Just create a measure using the following DAX

 

Weight Measure = SUM(Table2[Value]) 

 

 sankey.PNG

The Following are the tables' data. For your reference

 

Table1

 

IDWeightSourceDestination
10.5DestADestB
21.2DestBDestA
32.5DestCDestB

 

Table2

 

IDDateValue
11/1/201820
25/2/201825
34/3/201830
Anonymous
Not applicable

Try this:

 

WEIGHT = CALCULATE(SUM(Table2[VALUE]),FILTER(Table2,Table2[ID]=Table1[ID]))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.