Forum Discussion
yazenbarakat123
Helper I
4 years ago2 tables with Different dates
I have 2 tables , an Incident table and a Financials tables as shown below. I'm trying to use these tables to create a Safety score which is the The Number of incidents that month / by the finan...
- 4 years ago
No, you should link them on the Date field, so that it is a one-to-many relationship from Date to each of the other tables.
You can make both relationships inactive, so as to not interfere with the current relationship, and then use USERELATIONSHIP in your calculations.
It is not best practice to have many-to-many relationships, that can make for some very complicated DAX and some unexpected behaviours. It might be worth looking at changing your main relationship to one-to-many, possibly by building a bridge table between the two.
yazenbarakat123
Helper I
4 years agoIt worked !!! Thank you johnt75