Hello Everyone,
I am trying to filter JSON data using one column(UniqueId).
Suppose I have this type of JSON data:
[
{Name: "User1", UniqueId: "UID1"},
{Name: "User2", UniqueId: "UID2"},
{Name: "User3", UniqueId: "UID1"}
]
I want this JSON data to be in this form:
[
{Name: "User1", UniqueId: "UID1"},
{Name: "User2", UniqueId: "UID2"}
]
As I already have UID1 on the 1st row, so I don't want to add any further rows with the same UniqueId.
Thanks