Hello,
I have entity called HC Reports with the following structure:
| No.Col (primary key) | HC Country (text) | HC Function (text) |
| 1233 | FRANCE | HUMAN RESOURCES |
| 2343 | FRANCE | ENGINEER |
And other entity called Report with the following structure:
| ReportID | HC Report (lookup to HC Reports) | HC Country (HC Report) | HC Function (HC Report) | Date |
| 1323123 | 1233 | FRANCE | HUMAN RESOURCES | 01/08/2023 |
| 234234 | 2343 | FRANCE | ENGINEER | 01/08/2023 |
Every month the HC Report entity is updated and some HC Functions could be updated with new values.
The report data is created for each month, but every time a record from HC Reports updates the value, the reference used in Report entity is updated, that's a normal behaviour in DataVerse.
I need the records from Report keep the previous values from the HC Reports lookup column and only the new added records use the new/changed values from the lookup.
Is it possible to achieve this?
Thank you,
Ruben