I’m trying to build a table dynamically using screen scraping and when I selected the range, I dragged and dropped the Output Data Table activity and I set the Output property as ExtractDataTable - which is the name of the variable it created.
value of type system.data.datatable cannot be converted to string
I believe ExtractDataTable will need to be the Input property for the Output data table command. For the Output property you will need to use variable that is type String, perhaps your existing result variable. You can then display the string variable in your message box command.
You’re building your data table with data scraping, and its just sitting there all structured and nice.
Output converts the data table into a easily displayable format (a string).
So your inputting your data table into the ‘input’ activity to convert it to a string, and the text output is where your newly converted data table sits.
Even after using output data table, you can still use the original data table variable ‘ExtractDataTable’ to play with the data after you’ve visualised it through output data table activity.