Collection Functions(Power Automate Cloud flows)
Contents
Collection Functions
Function to retrieve array items
Function | Importance | Overview |
---|---|---|
first | High | Function to get the first item in an array. first also has a separate function of the same name to get the first character of the text. It works in the opposite way to last. |
last | High | Function to get the last item in an array. last also has a separate function of the same name to get the last character of the text. It works in the opposite way to first. |
take | Middle | |
item | High |
Function to merge multiple arrays
Function | Importance | Overview |
---|---|---|
intersection | Middle | |
union | Middle |
Function to get information about an array
Function | Importance | Overview |
---|---|---|
contains | High | This function checks whether an array contains a specified item. There is also a function of the same name that checks whether a given text is contained. |
empty | High | |
length | Middle |
Other
Function | Importance | Overview |
---|---|---|
join | Middle | |
skip | Middle | |
chunk | Middle | |
sort | Middle | Function to sort array contents in ascending order. If you want to sort in descending order, use the reverse function together. |
reverse | Middle | Function to reverse sort the contents of an array . |
---