How to feed my values in my particular columns ( I have built data table in which table I have to add my values in particular columns)
my data table: (I have to add my values in highlighted columns name)
my logic: (not worked)
The image shows a table with various column headers, each of which represents different data fields, including 'MSISDN', 'DN_StartR', 'DN_EndR', 'MSRN', 'N_StartRe', 'N_EndRa', 'NN_GT', 'GT_StartR', 'GT_EndRa', 'TADIG', 'E212', and 'E214', all of which are string data types. (Captioned by AI) 1004×124 9.47 KB
please help anyone
thanks
shaik
@shaik.muktharvalli1 - You need 7x “” (empty strings) at the beginning and 3x “” (empty strings) at the end in your Add Data Row.
@shaik.muktharvalli1 ,
Pass this in Add Data Row - ArrayRow property
{"","","","","","",NN_GT,NN_GT_StartRange,NN_GT_EndRange,"","",""}
Next loop I have to add required values in Highlighted round area …is it possible?
A screenshot of a data table with columns labeled MSISDN, DN_StartR, DN_EndR, MSRN, _N_StartRe, _N_EndRa, NN_GT, GT_StartR, GT_EndRa, TADIG, E212, and E214, with some columns marked with black and red lines. (Captioned by AI) 1004×124 9.84 KB
thanks
shaik
@shaik.muktharvalli1 ,
Ok try like this. For example I have this datatable.
Here I have added logic to create a new blank row and feeding each column data in a loop
In last added the filled data row to datatable.
Sample code to refer.
DTTestFlow.xaml (12.0 KB)
Hello
If you want to only add to those columns using their column names then watch this tutorial.
See video at 5:45
Cheers
Steve