Hi guys, got stuck for some basic problem if you can help.
I have below 3 tables with their columns:
User table
{Name (primary ID), Position}
Position
{Position (primary ID), Hourly Rate}
Timesheet
{Activity (primary ID), Name, Duration (in hours), Hourly Rate, Total $}
All "Position", "Name", "Hourly Rate" are looking up each other, I need to make this happen:
For every new timesheet record, i want to select a person's "Name", then the person's "Position" and the "Position's Hourly Rate" can show up in my Timesheet table, so I can do calculation in the Timesheet table.
This can be easily done with SharePoint list with the ability to select which column to look up, but this is not possible with Dataverse, I just dont understand how do you implement this feature?
I don't understand why when Microsoft present Dataverse as a more "mature relational database", they just delete some features that is useful because they think it doesn't fit the logic behind it??