In Document Understanding,
I’m trying to fetch Confidence Score of each field into excel sheet along with other field values.
I’m following automate with rakesh tutorials. I have done all the steps exactly as mentioned.
But I can’t see the Confidence Score column in the output excel sheet.
ColumnNameList.AsEnumerable().Where(Function(y) Not String.IsNullOrEmpty(OutputDs.Tables(0).Rows(0)(y).ToString)).Select(Function(x) CDbl(OutputDs.Tables(0).Rows(0)(x))).ToList()
The code returns all columns with confidence as suffix and then returns a list of all confidence values.
If this solves your question , do mark it as solution
Try to select the “Export Extraction Results” activity and go to the Properties panel.set “Include Confidence” to True by checking the box or typing True.
If you found helpful, Mark as a solution tick .
Happy Automation