For each item from item(3) and on
How can I do this?
I tried
for each ITEM in strArr(3:)
for each ITEM in strArr[3:]
For each item from item(3) and on
How can I do this?
I tried
for each ITEM in strArr(3:)
for each ITEM in strArr[3:]
Hi @lavint,
You can use arritems.skip(2) in for each
The above represents array of items and using skip method to skip the items and 2 represents how many items you want to skip.
Refer the below workflow.
get recent file.xaml (9.3 KB)
Thanks! what about let’s say from item 3 to item 5? and total number of item is 10
Hi,
Use the below expression in for each.
arritems.Skip(1).Take(2)
So the above expression will skip the first item in the array and take the next 2 items from the array.
Got it! Thanks.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.