I have a project where I need to use several columns from the data table. Depending on what direction or steps I need to take is what column I will be using.
My process is as follows:
Using a read range = Process_DT
Using a For Each Row
CurrentRow in Process_DT
My question is, rather than having multiple assign to bring in the columns names i.e "CurrentRow(“Column1”).ToString and so on. What is another approach I could use to avoid having too many variables?
What do you mean by “across multiple workflows”?
Anyway, a datatable is a variable. You can pass the whole datatable to another workflow. Or if you’re inside a For Each Row you can pass CurrentRow since it’s also a variable.
ok… so If I am passing current row, will I need to assign “CurrentRow” as an argument? and pass it to the other workflows?
or how would I pass it
for some reason the site is not allowing me to paste any screen shots my apologies