Hi,
I am generating a PDF from PowerApps using the HTML control. The PDF works perfectly but I've got an issue with the Toggle Controls value. I've changed the FalseText and TrueText in the control to say Yes/No but when I get the value in the HTML the output is true/false.
My HTML looks like this:
<p class='fonts'><strong>Activities or workers requiring supervision eg. young
workers, visitors etc.</strong></p>
<table style='width: 100%' class='fonts'>
<tr>
<td style='width: 25%'><strong>Risk Present?</strong></td>
<td> " & tog_new_safetyplan_canvas_activities.Value & "</td>
</tr>
<tr>
<td style='width: 25%'><strong>Controls:</strong></td>
<td>" & inp_edit_safetyplan_canvas_activities_controls & "</td>
</tr>
</table>
This results in this:

Is there a way to convert the true/false to Yes/No or do I have to something extra in the HTML?
Thanks in advance
Rob