how can we fetch only TestName3 value on basis of below example, we have ExtractData variable and type of variable is IDocumentData, we have to fetch only TestName3 value which is 9.3 but indexing is not there, How can we fetch exact value?
![]()
Try this
testName3Value = ExtractData.Fields.Where(Function(field) field.Name = "TestName3").Select(Function(field) field.Value).FirstOrDefault()
use an assign activity
Hey @kanupriya.munja
If your ExtractedData variable is of type IDocumentData, so I suppose the TestName3 is located in the Fields section, so you can try retrieve its value like this:
ExtractedData.Fields("TestName3").Value.ToString