Hi all,
I’m just wondering if anyone knows if it’s possible to insert an Asset value/variable into an Assign?
E.g my current assign is as follows:
DataTable2 = DataTable1.AsEnumerable().Take(500).CopyToDataTable
However, I would like to be able to store the Take number (500) as an Asset, so I’m able to amend this value via Orchestrator whenever I need to.
Any help would be greatly appreciated, thanks in advance!
ppr
(Peter Preuss)
2
read the asset Value and store it on a variable of Int32 Datatype - cfgTake
then use it within the statement like
DataTable2 = DataTable1.AsEnumerable().Take(cfgTake).CopyToDataTable
Thank you @ppr that’s worked perfectly! Cheers for the super quick response! 
system
(system)
Closed
4
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.