Hi,
I have simple question, I have a variable with names but when I use the type into it types all the names. Is there a way to only type one name? and then the other one etc.
Cheers,
Hi,
I have simple question, I have a variable with names but when I use the type into it types all the names. Is there a way to only type one name? and then the other one etc.
Cheers,
Name = First_Name Middle_Name Last_Name
then Split the Name by spaces.
In type into activity
@ukjtenhoven Can you elaborate the scenario from where you are getting type into value and what you needs to type.
Hi @ukjtenhoven,
what is the datatype of names variable is it a string array?
I think I did not explain it right.
These are example names and one by one need to be typed into this:
Then it searches information about that person and I need that information per name.
Cheers,
step 1: Read the excel file using read range activity you will get a datatable
step 2: Use for each row activity to loop through the above datatable
step 3: Keep that type into activity inside this foreach and pass row(“column name”) to type into
try this and let me know for any queries…
from the screenshot you shared i hope that u are using the excel
@ukjtenhoven From where you want to to type names from Gebruiker or ukjtenhoven
it will type from empty cell
if you check the add headers check box in the read range activity properties.
From the Excel file
Alright thanks!
Alright I think that I got it
Cheers,
What exactly do you mean with pass row(“column name”)?
cheers,
for example your input excel is like this,
row(“Age”) will return 22,25…etc on for each row loop.
In your case, pass row(“Gebruiker”) to type into
@ukjtenhoven Is it possible to share your workflow.
I’m affraid there is pretty confidential information…
yes your correct but move for each row to outside from the excel application scope
@ukjtenhoven Try this row(2).ToString in type into activity