Forum Discussion
How to visualize these two Tables with a bridge table
- 9 years ago
Hi JoLambrichts,
Please create relationship between Teachers and Reservations(one to many), Rooms and Reservations(one to many), then create a measure using the formula.count = IF(COUNT(Reservations[reservation])>0,"Yes",BLANK())
I try to reproduce your scenario using the following sample tables.
TeachersRoomsReservationsThe relationship I created
Then select the Tearchers[Name] as rows, the Rooms as column, the count measure as value. Set the rows and columns to show items with no data, so all the tearchers and rooms names can show.
Expected resultsBest Regards,
Angelia
Hi JoLambrichts,
Please create relationship between Teachers and Reservations(one to many), Rooms and Reservations(one to many), then create a measure using the formula.
count = IF(COUNT(Reservations[reservation])>0,"Yes",BLANK())
I try to reproduce your scenario using the following sample tables.
TeachersRoomsReservationsThe relationship I created
Then select the Tearchers[Name] as rows, the Rooms as column, the count measure as value. Set the rows and columns to show items with no data, so all the tearchers and rooms names can show.
Expected results
Best Regards,
Angelia
Thank you for this perfect answer.
Still a lot to learn for me.