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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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