Hi Everyone,
I am working with a sizable data set from a bespoke data source. I can create a Datatable using the 'Set Variable' step like so:

What I am also able to do is to add a new row(s) with the data hardcoded like so:

This will result in a Datatable with three columns (SKU, DES, BUY) and two rows of data. This works successfully for adding hardcoded rows several at a time --> 'Set Variable' step with the step value as: %Test + ['A','B','C'] + ['D','E','F']%
What I want to be able to do is to use a variable that contains the text value --> ['A','B','C'] + ['D','E','F'] and add it to the Datatable.
What is happening at the moment is that I am receiving an error 'No row at position 0' when I try to do this:
'Set Variable' step with the value as: %Test + MyVariable%
WHERE %MyVariable% contains the text value: ['A','B','C'] + ['D','E','F']
Any ideas on how to get PAD to accept the text string as a multiline/row addition in a single step?
Cheers
MisterH