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".
Solved! Go to Solution.
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,
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.
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,
User | Count |
---|---|
1 | |
1 | |
1 | |
1 | |
1 |