How to save loop values into the same transaction item

I am having 4 different IP Addresses, I am getting values in a loop, i need to save those values into same transaction item on crating.

Thanks in advance

What is the datatype of your transaction item?

transaction item: Data Row.

Transaction items
11.26.29.165
111.272.392.645
111.891.622.928
112.33.74.284

Values i am going to get

Owner :
Provider:Bluehost
ASN:
City:
Postal:
Country:
Coordinates:

Hi @Manju_Reddy_Kanughula,

Try this.

Inside the for loop

Add assign

Text = Text + “,” + IP

This will add all IP to Text variable one by one comma seperated.

Then outside the loop one more assign
Text = Text.Trim(","c)

This is to remove extra comma.

Set default value of Text variable as “” to avoid error.

Hope it helps.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.