How to get the confidence score for tables in document understanding cross platform

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 .
image

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.