How can I type in each letter of a word in separate text box?

Hi All,

Can anyone please help me with this?

I wanna know how can I enter each letter of a word in separate text boxes?
Example: QWERTYUI

For example, I’m reading this word “QWERTYUI” from excel & storing it in as a variable & then if I want to enter each letter in separate text box. How can I perform this action? Please advice.
Please see below screenshot for clear understanding.
Thanks a lot in advance.

1 Like

@Rohit_Gorilla
Welcome to the forum

You have two options:

  • configure a type into to the first Box and let enter follwoing string:
    “Q[k(tab)]W[k(tab)]E[k(tab)]R[k(tab)]T[k(tab)]Y[k(tab)]U[k(tab)]I”
    the nested tab keys will move the cursor to the next box after entering a letter

  • Iterate over the items of a string with a for each
    the current iteration index can be used for a dynamic selector part of a type into activity

Find some starter help here
Rohit_Gorilla.xaml (7.8 KB)

Hi,
Thank you so much for response.

This is little confusing for me as I’m still learning.

The 8 letter text “QWERTYUI” is my code is dynamic which I’m getting from an excel & it won’t be same every time.

Is there a way to store each letter of that string in a separate variable?

Thank you!