Forum Discussion

bbruegge's avatar
bbruegge
Regular Visitor
6 years ago
Solved

Use multiple relationships between 2 tables

Hi All,

 

I am trying to create multiple relationships between 2 tables, but it is not working. 

 

namedatejob
Ben2020.08.03job A
Ben2020.08.04job B
Fred2020.08.03job A
Fred2020.08.04job B

 

namedateshift
Ben2020.08.03early
Ben2020.08.04late
Fred2020.08.03late
Fred2020.08.04early

 

I need a multiple relationship between name / name and date / date to create the following table:

 

jobdateshiftname
job A2020.08.03earlyBen
job A2020.08.03lateFred
job B2020.08.04earlyFred
job B2020.08.04lateBen

 

I tried to use the m:n cardinalty relationship twice, but it is not possible. Do you have any ideas to solve my problem?

 

Thank you!

  • bbruegge , if it is imported then concatenated column and join

    New column in both tables

    key = [name] & "-" & [date]

2 Replies

  • bbruegge , if it is imported then concatenated column and join

    New column in both tables

    key = [name] & "-" & [date]

    • bbruegge's avatar
      bbruegge
      Regular Visitor

      That solves my problem perfectly. 

       

      Thank you very very much for your help!