Hello. I'm pretty new to PowerFX in general, so not positive if this is missing functionality, or if I'm just not searching for the right keywords.
I'm asking the user for some selections using an adaptive card, splitting that into a table variable, and asking if there are more options they'd like to select (i.e. the next page of results)
From my searching, it seems like it should be something like
Collect(
Topic.Selections, // Table Variable
Split(Topic.NewSelections, ",")) // String variable
Or from the YAML for clarity
- kind: SetVariable
id: setVariable_igZwOP
variable: Topic.Selections
value: |
=Collect(
Topic.Selections, // Table Variable
Split(Topic.NewSelections, ",")) // String variable
But I get an error that 'Collect' is an unknown or unsupported function.
Is Collect something that's just not implemented for the preview yet? Or is there a better way to do this?
In this case, I could just append to the string and split it at the end, but I'd like to figure out how table variables work.