if condition for array with index value .
Both the Arrays are 2d Array
Hi @Roshan_Ouseppachan ,
Try below syntex
Loop[6].ToString().Equals(Loop1[4].ToString())
OR
Loop(6).ToString().Equals(Loop1(4).ToString())
Regards,
Arivu
Your are giving index to iterative variable, we cant give index to iterative variable
you have to give this in array variable only like Arry1[6].Equals(Arry3[4])
try out this
Loop.ToString.Equals(Loop1)
Thanks,
Robin S
tried but facing the same issue
Thanks
Roshan
Hi @Roshan_Ouseppachan ,
Try this
Loop[6].Equals(Loop1[4])
if not resolved, Can you send the xaml file i will check and update the issue.
Regards,
Arivu
Jsn.xaml (18.6 KB)
Hi @Roshan_Ouseppachan ,
I have modified your code bit. kindly check attached xaml
Jsn.xaml (17.7 KB)
Regards
Arivu,
this is comparing the same array , i.e loop1 is comparing loop1 itself
Thanks
Roshan
Solution:-
Set the TypeArgument as System.String.
In For loop the condition will be
Val(6)= Val1(4)
Thanks
Roshan