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
Anonymous
Not applicable

Adding a MEASURE to a TABLE

Looking for assistance!

 

We are trying to use the difference between; TestID 2, V1 and TestID 1 V1 in Table1, as the Z value for V1 in Table2.

 

In Table1 I have some data from a test. 

table1.JPG

We have created measures to return the differnce between TestID 2, V1 and TestID 1 V1 as well as TestID 2, V2 and TestID 1 V2, they return the below.

measures.JPG

Measure 

V1 DELTA =
VAR FIRST = MIN(Table1[TestID])
VAR vid1 = CALCULATE(AVERAGE(Table1[V1]), Table1[TestID]=FIRST)
var last = MAX(Table1[TestID])
var vid2 = CALCULATE(AVERAGE(Table1[V1]), Table1[TestID]=last)
return vid2-vid1
 
We would like to be able to use the values returned from the measures of V1 DELTA and V2 DELTA as the Z value in the below table. We have tried several paths but are still stuck. 
table2.JPG
Table2 represents the location of V1 and V2 on a map, we would like to use the DELTA measure to describe the Z value.
 
Thanks for any help provided!
 
 
1 ACCEPTED SOLUTION
TeigeGao
Solution Sage
Solution Sage

Hi @Anonymous ,

According to your description, my understanding is that you are going to put the difference of V1 (Last one - Top one) to the set V1-Z.

Assume that we have the following two tables:

PBIDesktop_TBSZyTVsy4.png

PBIDesktop_sWTTRxA0uC.png

Then we can create a measure like below:

Z =
IF (
    MIN ( Table2[VAR] ) = "V1",
    CALCULATE ( MIN ( Table1[V1] ), TOPN ( 1, Table1, Table1[TestID], DESC ) )
        - CALCULATE ( MIN ( Table1[V1] ), TOPN ( 1, Table1, Table1[TestID], ASC ) ),
    CALCULATE ( MIN ( Table1[V2] ), TOPN ( 1, Table1, Table1[TestID], DESC ) )
        - CALCULATE ( MIN ( Table1[V2] ), TOPN ( 1, Table1, Table1[TestID], ASC ) )
)

The result will like below:

PBIDesktop_Np06buNvQt.png

Best Regards,

Teige

View solution in original post

2 REPLIES 2
TeigeGao
Solution Sage
Solution Sage

Hi @Anonymous ,

According to your description, my understanding is that you are going to put the difference of V1 (Last one - Top one) to the set V1-Z.

Assume that we have the following two tables:

PBIDesktop_TBSZyTVsy4.png

PBIDesktop_sWTTRxA0uC.png

Then we can create a measure like below:

Z =
IF (
    MIN ( Table2[VAR] ) = "V1",
    CALCULATE ( MIN ( Table1[V1] ), TOPN ( 1, Table1, Table1[TestID], DESC ) )
        - CALCULATE ( MIN ( Table1[V1] ), TOPN ( 1, Table1, Table1[TestID], ASC ) ),
    CALCULATE ( MIN ( Table1[V2] ), TOPN ( 1, Table1, Table1[TestID], DESC ) )
        - CALCULATE ( MIN ( Table1[V2] ), TOPN ( 1, Table1, Table1[TestID], ASC ) )
)

The result will like below:

PBIDesktop_Np06buNvQt.png

Best Regards,

Teige

Anonymous
Not applicable

@TeigeGao 

Thanks, this worked great!

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.