Forum Discussion

Kelderic's avatar
Kelderic
Helper I
1 year ago
Solved

Two Relationships Between the Same Two Tables

I have an odd data structure in my ERP. A/R Transactions (invoices, credit memos, etc) is a parent table, and A/R Applications is a child table. However, the applications are linked to TWO records in...
  • Deku's avatar
    1 year ago

    You can only setup a single active relationship between two tables. You can concatenate the two fields in each table to make a single field for the join. 

     

    Alternatively you can use calculate( something,( treatas( ARTransaction[ARTransNum],  ARApplication[ApplyToARTransNum])) to create a virtual relationship for a given measure. 

     

    The exact implementation will depend on what you are trying to do