Hello,
I created a PowerApps form starting from a SharePoint list. There is any way to create a pdf from PA with the questions and the answers from the form? This pdf I want to be saved also in the list as an attachment.

Hello,
I created a PowerApps form starting from a SharePoint list. There is any way to create a pdf from PA with the questions and the answers from the form? This pdf I want to be saved also in the list as an attachment.
Hi @Madalina97 ,
Do you want to create a PDF file based on the form data in your app, then save the created PDF file as attachments of the submitted List Item record from your app?
Based on the needs that you mentioned, I think the combination of PowerApps and MS Flow could achieve your needs. More details about generating a PDF file base don PowerApps form data, please check the following video resource:
https://www.youtube.com/watch?v=IhE0-HumNNo
https://www.youtube.com/watch?v=MHE4TU8jkwQ
https://www.youtube.com/watch?v=bfXV_GXc_JM
In addition, if you want to attached the generated PDF file as a attachment of the submitted SP List record, the user @Ajilakes has faced same needs with you, please check my response within the following thread:
https://powerusers.microsoft.com/t5/Building-PowerApps-Formerly/Capture-Image-and-Save-as-Attachment/m-p/360815#M103106
On your side, you should put your 'FlowName'.Run(...) formula within the OnSuccess property of the Edit form, when you submit your form data successfully, your flow would be fired.
If you want to reference the submitted column value within the HTML content which you need to pass from your app to your flow in above 'FlowName'.Run(...) formula, please use the following formula:
EditForm1.LastSubmit.Column1
EditForm1.LastSubmit.Column2
EditForm1.LastSubmit.Column3
...
Within your flow, you need also define a List Item ID parameter which you need to pass from your app to the flow, then within the FlowName'.Run(...) formula in your app, pass the submitted List Item ID value using the following formula:
EditForm1.LastSubmit.ID
In your flow, you should add "Create a file" action of OneDrive connector to create a PDF file based on the passed the HTML Text content. Then add a "Add attachment" action of SP Connector to attached the generated PDF file as attachment of the submitted SP List Item record.
Please consider take a try with above solution, check if the issue is solved.
Best regards,