Im checking the values with this function but its showing automatic result output rather than human validated one. Is this the right function?
humanvalidatedResults.ResultsDocument.Fields.First(Function(i As ResultsDataPoint) i.FieldName = “testField”).Values(0).Value
If the value is missing this doesnt work since it will have no values inside.
Please check first if the value is missing(Field.IsMissing) or
alternatively you can check humanvalidatedResults.ResultsDocument.Fields.First(Function(i As ResultsDataPoint) i.FieldName = “FieldName”).Values.count>0 to check if it has values.