Forum Discussion

Salac's avatar
Salac
Frequent Visitor
1 year ago
Solved

Limited relationship issue

Hi all,   I read all the topics related to this issue but I couldn't resolve the issue that I'm struggling with. I have two tables (one for promo plan, other for results), but they don't have disti...
  • Tahreem24's avatar
    1 year ago

    Salac If you don't have unique values in any tables so try creating a Bridge Table as below:

     

    Bridge Table = DISTINCT(TableName [Key NB])

     

    Then join this Bridge table to both of the remaining tables.

     

     

  • govind_021's avatar
    govind_021
    1 year ago

    Related Function always work in the table that is at many side of the relationship . so there should be one to many relationship b/w the tables.
    Try creating a Bridge table for storing unique records and then connect that table to both the tables 
    using one to many relationship.

     

  • johnt75's avatar
    1 year ago

    I think that the problem is you have values in both tables which don't appear in the other table, resulting in a blank row being added to both and a many-to-many relationship.

    The easiest solution would be to use LOOKUPVALUE rather than RELATED, using your key column to do the lookup.