I need the row index of a given value if there are multiple intense of it. I don’t want to change my original structure of the data.
for example 4900030673 is repeated twice So, I need the output as {5,11}. We can accomplish this in a For each loop activity. Appreciate any other suggestion
Lookup data table activity gives the output of first occurrence. However I need row index of all occurrences!!
Why do you need other suggestions? Just do it with a For Each. If you are thinking that For Each is slow, that’s a myth. Any method of doing this will require looping. Some methods, like LINQ, simply hide the looping from you but it’s still looping.