Scenerio:
Fact Table: Fact_Travel_Plan
Dimension Table: Dim_City
I have created relationship with Dim_city and Travel Plan as
Dim_City.CityId --> Fact_Travel_Plan.EntryCityId
Dim_City.CityId --> Fact_Travel_Plan.ExitCityId
While establishing the same relationship in powerbi , after the first relationship it is giving an error "A relationship already exits with this table" . Please let me know how to handle this. Thanks
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
}
</style>
</head>
<body>
<table style="width:100%">
<tr>
<th>Plan</th>
<th>EntryCityID</th>
<th>ExitCityID</th>
<th>NoOfDay</th>
</tr>
<tr>
<td>Plan1</td>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>Plan2</td>
<td>3</td>
<td>2</td>
<td>2</td> </tr>
<tr>
<td>Plan3</td>
<td>2</td>
<td>1</td>
<td>4</td> </tr>
</table>
</body>
</html>