Hi IssacR
@VJRI believe he is trying to input the text, seeing he has created a data table - correct me, if I'm wrong Issac?
If you are indeed trying to input the data from the variable, there are two basic ways to go about it.
1) Hardcode the values. The contents of a data table is represented in a variable as "%DataTable[Cloumn][Row]%" - thus, if you want the value of the first row and column, it can be written as %OutputData[0][0]% (counting from 0 and up).
2) Loop the values. You can use loops to iterate through the table. A For Each loop, will give you a new variable for each row, when looping through the data, from which you can reference the individual values from the column, on that row.
