In CRM, I have created one multiline text filed and I changed the control of the same to pen control.
Now I need to set value for this field using PowerApps. How we can achieve this?
Thank you for your inputs. now it's working as expected.
Hi @Bharath_v ,
Do you list all your CRM Entity records using Gallery?
I assume that you add a Gallery control in your app to list all your CRM Entity records, please add a Image control in your app, set the Image control to following:
Substitute(ThisItem.'Multi-Line Text Field', """", "")
then the saved pen input image would be displayed within the Image control.
If you want to display the Pen Input image within the Display form, please consider unlock the Multi-Line Text Field data card, then remove the original Label control, instead, add a Image control within it, set the Image property to following:
Substitute(ThisItem.'Multi-Line Text Field', """", "")
Please consider take a try with above solution, check if the issue is solved.
Best regards,
Thank you for your replay.
Actually my scenario is, I need to capture signature using PowerApps and showing same in PowerApps itself.
I tried the same what you mention in the above, in CRM the field got updated with the below data.
but while viewing in Powerapps i didn't get exact signature what I capture previously.
Hi @Bharath_v ,
Could you please share a bit more about your sceario?
Do you want to save Pen Input image back to the Multiple Text filed in your CRM Entity?
Further, do you embed a canvas app into your CRM form or create a Model-Driven app?
Based on the needs that you mentioned, I think you embedded a canvas app into your CRM Form, and you want to save image data captured via Pen Input control into this Multiple-Line Text field, is it true?
I have made a test on my side, please consider take a try with the following workaround:
Firstly, you need to Max length property of the Multiple Line Text field in your Entity to a proper large value, e.g. 10000.
Then refresh the Entity data source within your app manually. After that, take a try with the following steps:
1. Edit your embedded canvas app, go to the Edit screen.
2. Unlock the Multiple-Line Text filed data card within the Edit form, and then remove the Orignal Text Input box, instead, add a Pen Input control.
3.Remove the formula within the Update property of the Multiple-Line Text field data card in your Edit form.
4. Set the OnSelect property of the "Submit" button to following:
Set(PenInputData, JSON(PenInput1.Image, JSONFormat.IncludeBinaryData)); /* <-- Add this formula */
SubmitForm(EditForm1)
5. Set the OnSuccess property of the Edit form to following:
Patch( 'CRM Entity', EditForm1.LastSubmit, { 'Mul-Line Text Field': PenInputData } ); Set(PenInputData, Blank()); Back()
Please take a try with above solution, check if the issue is solved.
Best regards,
Michael E. Gernaey
9
Super User 2025 Season 1
bscarlavai33
5
Super User 2025 Season 1
getsplash
2