In a project using an ML Package to train a pdf to grab values, how does one use/access the values stored to the fields in the same workflow after extracting?
they are stored in a variable with index, you need make an assign like variableDU(0).to string
Hey, thank you. What variable is it you try to access its indices to see the value stored to the fields? Is it the variable you get from the data extraction scope activity: Extraction Results?
im gonna share with you my workflow, and i think will be easier for you to unnderstand
I use this activity to get all the results, and then i use dataset.tables(0)(x) to get the values
Thank you I’m following what you’re saying now. What does that x represent in that example? And what activity do you use to view the field? I tried “DataSet.Tables(0)(0).ToString” and “DataSet.Tables(0)(0)” in a log message and “System.Data.DataRow” is was what was logged.
put like this DataSet.Tables(0)(0)(0).ToString
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.