Hello guys!
Is there any resources or tutorial on how to save data result from the text recognizer and save It on created table in dataverse?
Sorry, Im new with powerapps.
Pls help. Thanks
Announcements
Hello guys!
Is there any resources or tutorial on how to save data result from the text recognizer and save It on created table in dataverse?
Sorry, Im new with powerapps.
Pls help. Thanks
Hi
I believe this is what you need:
https://learn.microsoft.com/en-us/training/modules/get-started-with-ai-builder-text-recognition/
In particular this section:
You can also try to follow these steps:
In your canvas App, insert a TextRecognizer control and use it with an existing image.
In a text label, display the extracted text you need to insert, and tweak the formula if needed .
Eg:
First(TextRecognizer1.Results).Text
Click 'Add data' and select your Dataverse table where you want to insert a record.
Insert a button and set this formula as 'OnSelect' by adapting the name of table (myDataTable), the column name where you want the extracted text (Name), and the content.
Patch( myDataTable, Defaults( myDataTable), { Name: First(TextRecognizer1.Results).Text } )
Clicking this button will create a new entry in your myDataTable.
Documentation about patch function : https://learn.microsoft.com/en-us/power-platform/power-fx/reference/function-patch
If it's a model driven app, you can adapt what is done for Business Card reader here:
Hope this helps!
Antoine2F
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
mmbr1606
275
Super User 2025 Season 1