
Announcements
Hi there,
For some reason my app isn't syncing the data. When I check why it points to this code -
Hi @AcornAlex,
If you look at the Split function, you'll notice that you need a separator: Split(Text, Separator). Assuming that the response you get from you Flow is a string, you need to refer to a separator to use in splitting the string. You don't need the ForAll function.
ClearCollect(MyCollection, Split(ALLTRANSACTIONS.Run().resopnse, ",")) //Here the comma is an example but it can be another seperator of course.