cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
RWER
New Member

recognising handwritten cash value

I have a donation form that asks a donor how much they would like to donate in £. I'm struggling to get AI builder to get it to recognise the handwritten amount.

 

For example, if someone writes 5,000 and it's in a box with a £ in front it recognised "E   52 000".

1 ACCEPTED SOLUTION

Accepted Solutions
v-yutliu-msft
Community Support
Community Support

Hi @RWER ,

Based on your description, I suggest you try form processing ai model.

Currently, it's not supported to customize ai model type.

Form processing could used to detect object.

You could use this formula to get the data that you want.

modelname.FormContent.Fields.<Yourfieldname>

 However, using this could only get "£" and "5,000 " value.

If you want to get "E   52 000", you need to transfer by yourself.

For example:

If(IsMatch(modelname.FormContent.Fields.field1, "£", Contains ),
   Concatenate("E",Text(Value(modelname.FormContent.Fields.field2)*10.4))
   )

Here's a doc about how to get value by using ai model:

https://docs.microsoft.com/en-us/ai-builder/form-processor-component-in-powerapps

 

 

 

Best regards,

Community Support Team _ Phoebe Liu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
JoeF-MSFT
Power Apps
Power Apps

Hi @RWER,

 

Thanks for your question. 

 

May I ask how are you planning to process the information from the donation form? If its from a Power App, for example, you could have AI Builder populate a text field with what was extracted from AI Builder and somebody could amend if the retrieved values is not correct. 

v-yutliu-msft
Community Support
Community Support

Hi @RWER ,

Based on your description, I suggest you try form processing ai model.

Currently, it's not supported to customize ai model type.

Form processing could used to detect object.

You could use this formula to get the data that you want.

modelname.FormContent.Fields.<Yourfieldname>

 However, using this could only get "£" and "5,000 " value.

If you want to get "E   52 000", you need to transfer by yourself.

For example:

If(IsMatch(modelname.FormContent.Fields.field1, "£", Contains ),
   Concatenate("E",Text(Value(modelname.FormContent.Fields.field2)*10.4))
   )

Here's a doc about how to get value by using ai model:

https://docs.microsoft.com/en-us/ai-builder/form-processor-component-in-powerapps

 

 

 

Best regards,

Community Support Team _ Phoebe Liu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Power Apps News & Annoucements carousel

Power Apps News & Announcements

Keep up to date with current events and community announcements in the Power Apps community.

Community Call Conversations

Introducing the Community Calls Conversations

A great place where you can stay up to date with community calls and interact with the speakers.

Power Apps Community Blog Carousel

Power Apps Community Blog

Check out the latest Community Blog from the community!

Users online (2,157)