Hi all,
I would love some help.
I have created a PowerApps with three TextInput (TextInput1, TextInput1_1 and TextInput1_2). All I want is with a click of button to trigger a Flow so I can export records from multiple TextInputs into an HTML table.
My Flow is called HTMLtoPDF.
What should I type under the "OnSelect" for the button within the PowerApp? I currently have the following:
<p>HTMLtoPDF.Run(TextInput1.Text, TextInput1_1.Text, TextInput1_2.Text)</p>
What should I type within the table in the HTML below?
<p> <table>
<tr>
<td>Column 1</td>
<td>{{TextInput1.Text}}</td>
</tr>
</table> </p>
Please see screenshots attached