I have created a simple form in Powerapps which has a text input field called name and a data table which shows a list of all customers from a table called customer in a SQL Server database and I have also added a button labelled "Go" on the form.
What I want to do is:
- See a blank data table when I first open the form
- I would enter a customer name in the name text input field
- Click the "Go" button and then the value from the name field will be passed to the SQL Server database in a query which only returns the records which have the same name
- Display the results of the query in the data table.
How can I do this?
Thanks