Here the scenario, We have one text file with the number of line items. In the each line item we have to separate the value using tab and need to stored the value in excel. Please refer the below scenario’s and expected output.
Note: We tried GenerateDatatable activity it won’t help for us. It’s broken the value.
you can use this expression
Step 1: first need to split text based on Tab function and store it in list
var_List=yourtext.Split(vbTab.ToCharArray())
Step 2: creat build data table with headers
Step 3 : take For each activity and and mention you list
Step 4: inside the For each loop use Add data row activity and insert your data with it.
we used this logic, options in combination with generate datatable and also custom parsing approaches. We got it working and selected approaches depending on project specifics
we dont know what was done, so we cannot process this feedback for further suggestions
Feel free to share with us a sample data text file
Sorry for delay response!!
Here I have attached my sample input and expected output.
Please review the scenario and help me for proceed further. TestText.txt (139 Bytes)
For excel not able to upload here so please refer the below screen shot!!