Hello all.
I want to get the confidence score for the table(or in particular part number).
Currently I can get the score for header level data like Invoice number, date, Po number.. etc.
I am using Extract document data activity.
Variable type is .

Hey! @s.dineshbabu For table fields like part number, you just need to loop through your extracted data tables and grab the confidence for each cell. Example: yourResult.Tables("LineItems").Rows(rowIndex)("PartNumber").Confidence
1 Like
I am using this flow. But donât see confidence property.
CurrentRow(âDescriptionâ) this gives the Description.
Try this:
DataOut.DocumentResults(0).Fields(âDescriptionâ).Confidence
1 Like
DataOut.DocumentResults(0).Fields(âDescriptionâ).Confidence
The following errors were encountered while processing the workflow tree:
âVisualBasicValueâ: Compiler error(s) encountered processing expression âDataOut.DocumentResults(0).Fields(âDescriptionâ).Confidenceâ.(2) : error BC30456: âDocumentResultsâ is not a member of âIDocumentData(Of DictionaryData)â.
Check the actual variable type in your workflowâmatch your access method to that.