Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Create Relationship Between 2 Tables

I need to create relationship between the 2 tables below to create same measure in both tables: Exception Summary table - (measure: % parcels with an Exception scan = SUM(NUM_OF_PARCELS_WITH_EXCP_S...
  • v-janeyg-msft's avatar
    5 years ago

    Hi, Anonymous 

     

    It’s my pleasure to answer for you.

    According to your description, if you only want to create a measure with two column in different tables, it can be used directly.

    Like this:

    Measure = DIVIDE(SUM('Exception Summary'[NUM_OF_PARCELS_WITH_EXCP_SCAN]),SUM('Exception Summary'[NUMBER_OF_PARCELS_NOT_ON_TIME]))
    
    Measure 2 = DIVIDE(SUM('Exception Detail'[COUNT(*)]),SUM('Exception Summary'[NUMBER_OF_PARCELS_NOT_ON_TIME]))

    And you can’t define two measures with the same name. If you don’t want to calculate total, please add some requirements,so we can help you.

     

    If it doesn’t solve your problem, please feel free to ask me.

     

    Best Regards

    Janey Guo

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.