
Announcements
I have connected to a flow in my Power App which calls a stored procedure and returns the name / value pair resulset using a response action in the flow.
In the On Select event of combovbox call the flow
ClearCollect(colResults,'PowerApp->GetResults'.Run(Self.Selected.Value).ResultSets.Table1)
My collection seems to be lacking (numeric) values! Do I need to covert these values to a string ( in my stored procedure)?
Hmmmmm first line in the docs mentions to check the type as it won't register in the Power App. For some reason it was previously set as a string. Now fixed and integer values passed back😀