Hello everyone,
I'm doing my first steps in PowerApps and it seems I've decided to choose one of the most difficult problems 😉
I have a Sharepoint list with a PowerApp, including a pen input field. Thanks to Shane Young I have managed to save the pen input to pdf in my Sharepoint docs via html code (https://www.youtube.com/watch?v=RFZfvTuDmP0&t=338s
SubmitForm(Form2);;
PenInputToPDF_1.Run("<!DOCTYPE html>
<html>
<body>
<h1>Überschrift</h1>
<p>Nachname: " & DataCardValue9.Text & "
<img src=" & JSON(PenInput1.Image; JSONFormat.IncludeBinaryData) & ">
</body>
</html>" )
But what is driving me really crazy is that I can't find a solution for a variable file name. Please see the flow I used - sorry it is in German. The steps I used are Create File on OneDrive - Convert File (Preview) - Create File on Sharepoint - Delete File on OneDrive.

This works really fine, but of course I don't want each file to be named "test.pdf". How can I create a variable file name concatenated from 4 fields in my PowerApps form plus the current date+time?
This is my form

Thanks for your help!
Berni