Looking for some guidance on what (I think) shouldn't be too complex, not just not working in my favor. I am processing a gallery in PowerApp that is generating an Export to Excel, but because the columns are not in the desired order, I wanted to rework the process which has put me down a rabbit hole and now I want to get this working.
I am using a button in my App using UpdateContext() and Concat()
UpdateContext(
{
varCSVFile:
"ID;Building;City;State_Province" & Char(13) &
Concat(
galList.AllItems,
ID & ";" &
BuildingName & ";" &
City & ";" &
ProvState & ";" &
Char(13)
)
}
);
My Flow triggers properly and if I add 'Terminate' after the 1st Compose I see the data as expected Header, then new line data, then new line, etc...
Then everything goes sideways... If I try and add a Compose for first() it does not work. if I just try a spilt() by ';' that also does not work...
I have watched some videos and looked at other threads. I just can't seem to figure this out.
Any thoughts or suggestions?
Cheers