I have exported several tables from a SQL server database into Excel, I spent quite some time cleaning and configuring new primary key/ID columns then I imported the tables into Dataverse - all good.
Now I am trying to relate the tables in Dataverse by creating a new relationship and, I assumed, pointing one of the existing key columns in table 1 to the it's relative column in table 2.
So for example, I have tbl_Projects with "Project_Name" and "PM_ID" columns and tbl_Project_Managers with "PM_Name" and "PMID" columns.
PM_ID needs to relate to PMID but I can't see how to create a relationship that lets me select PM_ID from tbl_Projects and relate it manually to PMID in tbl_Project_Managers.
Again, these columns are pre-populated with unique values (numbers) in each row that correspond to a value in the other table/column/row. In this case, many-to-one:
There is one project manager per project and many projects for each project manager.
How is this relationship configured using existing columns and values?
Thanks in advance.