I have a Resource Table with…
Resource ID | Name | DailyRate | ValidFrom |
|---|
R01 | Resource X | $1,500 | 3/8/25 |
R01 | Resource X | $2,000 | 9/1/25 |
R01 | Resource X | $2,200 | 9/31/25 |
I also have a Week by Resource Table with…
WeekID | ResourceID | WCDate | ValidRatePerWeek |
|---|
W01 | R01 | 3/2/25 | auto-pop $1,500 |
W02 to W26 | R01 | All the dates for W02 to W26 | auto-pop $1,500 |
W27 | R01 | 8/31/25 | auto-pop $2,000 |
How do I auto-populate the ValidRatePerWeek in the 2nd table?
I want it to look up the Resource Table and find the Daily Rate valid for that week.
I'm in Australia but I've changed my dates to be US format for the example.
Hope my tables make sense.