I have just started using Power Platform (Power Apps). I recently tried to see data (via Google Sheets) in a data table which worked fine by attaching a data source (of Google Sheets) to a data table.
Now, what I am trying to do is:
I added a button in my Test app
On that button's
onSelect
, I am executing a stored procedure after successfully adding a SQL Server data sourceThe code which I wrote in
onSelect
is this:MyStoredProcDataOnButtonClick.Run()
Now, after this event is called, I want to showcase the result data from the stored procedure call in a data table
In the data table, I am unable to see the data source (for that stored procedure)
How can I achieve this?
Any help/suggestions would be appreciated.
Note: I created a flow for this from Power Apps to execute a stored procedure on button click.