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...
- Aug 08, 2020Hi, 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.
Sudharsan K
Aug 08, 2020Iron Contributor
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.
- ms-jaftAug 11, 2020Copper Contributor
Thanks!
It solves my problem.