Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Power Apps Governance and Administ...
Answered

Pen input save image to CRM field

(0) ShareShare
ReportReport
Posted on by 36

In CRM, I have created one multiline text filed and I changed the control of the same to pen control.

test1.png

 

 

 

 

 

 

 

 

Now I need to set value for this field using PowerApps. How we can achieve this?

  • Bharath_v Profile Picture
    36 on at
    Re: Pen input save image to CRM field

    Thank you for your inputs. now it's working as expected.

  • Verified answer
    v-xida-msft Profile Picture
    on at
    Re: Pen input save image to CRM field

    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,

  • Bharath_v Profile Picture
    36 on at
    Re: Pen input save image to CRM field

    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.

     

    test2.png

     

    but while viewing in Powerapps i didn't get exact signature what I capture previously.

  • v-xida-msft Profile Picture
    on at
    Re: Pen input save image to CRM field

    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.11.JPG

    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,

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge Winners! 🌸

Congratulations to all our community participants!

Warren Belz – Community Spotlight

We are honored to recognize Warren Belz as our May 2025 Community…

Congratulations to the April Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard > Power Apps - Power Apps Governance and Administering

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 9 Super User 2025 Season 1

#2
bscarlavai33 Profile Picture

bscarlavai33 5 Super User 2025 Season 1

#3
getsplash Profile Picture

getsplash 2

Overall leaderboard

Featured topics