last(take(split(outputs('Compose_1'),'\t'),3))
However, when trying to process the whole file that looks like:
[
"xxx\txxx\txxxxxxxxxxxxxxx\txxxxx\txxxxxxxx",
"xxx\txxx\txxxxxxxxxxxxxxx\txxxxx\txxxxxxxx",
...
"xxx\txxx\txxxxxxxxxxxxxxx\txxxxx\txxxxxxxx"
]
I use a select action to grab the field I need for processing (I want to combine it with other data into one array later):
But this doesn't work, it just returns the whole row:
[
"field": "xxx\txxx\txxxxxxxxxxxxxxx\txxxxx\txxxxxxxx",
...
]
Am I not allowed to do this in a Select action? Or have I made a mistake?
Thank you.