Forum Discussion
ms-jaft
Aug 05, 2020Copper Contributor
[Solved] Identifier for referencing the item in a list
Hi.
I have three sharepoint lists: ListA, ListB, ListLogs. Every time an item of the ListA (or ListB) is modified I write in the ListLogs, through automatic flow, three information:
1) timestamp
2) link to ListA (or ListB)
3) reference to the item that has been modified.
Then I run statistics through PowerBI.
Fields 2) and 3) are used to reference items that have been changed. What is more correct to use to reference the single item? Should you use the List.ID or List.Item.GUID field?
Thanks
- Hi, it's better to use Item.GUID because if we use the normal item.ID then there might be the same ID that is the same in both List A and List B but with the different Item. So better to use Item.GUID or combination of List.ID and Item.ID.
2 Replies
- Sudharsan KIron ContributorHi, it's better to use Item.GUID because if we use the normal item.ID then there might be the same ID that is the same in both List A and List B but with the different Item. So better to use Item.GUID or combination of List.ID and Item.ID.
- ms-jaftCopper Contributor
Thanks!
It solves my problem.