Hello,
Looking for some advice of capturing blank data from an entry form within power apps that is being called upon as a variable within a flow.
So I am using a flow to generate a pdf report. In this example I have an initialize variable called "Project Manager". This variable is then entered into my html that is being converted to pdf. What I need to capture is if the datacardvalue for Project Manager within powerapps is blank then my project manager variable needs to be blank so this will display no value on my pdf.
Currently If no value is entered for project manager. I get an error message of pdf.run failed: The method 'Run' has an invalid value for parameter 'Project Manager'
I have tried NewPDF.Run(If(DataCardValue3.Selected.DisplayName = Blank(),Blank(),DataCardValue3.Selected.DisplayName) but no luck *Datacardvalue3 is my project manager datacard*
thanks,
Jake