Compare 2 Datarow Type

Hello Everyone,

I’ve a question about comparing two datarow type in each variable.

Example:
var A → { 1, “Banking Hall” }
var B → { 2, “Banking Hall” }

If var A is same with var B, the output will be False.
Anyone could help me?

Regards, Brian

You can use Filter Data table activity.

Hi

If you have the Datarow variable named as var1 and var2 then use a IF activity to find whether it has same value across them

Var1.ItemArray.Intersect(var2.ItemArray).Count = var1.ItemArray.length

If true it goes to then block or else block

Cheers @henokhbrian