Hello
Can someone help me for the following
I have 5 textbox ie from Textbox1.Text to Textbox5.Text and one More Textbox as TextNumbers.Text
I want respective Digit from below array to display in respective Numbered Textbox
for eg if TextNumbers.Text displayed with following options
1 1 5 4 2 or 11542 or 1,1,5,4,2 or 1, 1, 5, 4, 2
then I would like to display the above different options as below
Your help will be appreciated and remembered always.
Thanks
NimishK
Can someone help me for the following
I have 5 textbox ie from Textbox1.Text to Textbox5.Text and one More Textbox as TextNumbers.Text
I want respective Digit from below array to display in respective Numbered Textbox
VBA Code:
Dim dgtNos() As Variant
dgtNos() = Array{1, 2, 3, 4, 5}
'Further got stuck in deriving the logic
for eg if TextNumbers.Text displayed with following options
1 1 5 4 2 or 11542 or 1,1,5,4,2 or 1, 1, 5, 4, 2
then I would like to display the above different options as below
Textbox1.Text = 1 1
Textbox4.Text = 4
Textbox2.Text = 2
Textbox3.Text = ""
Textbox5.Text = 5
Your help will be appreciated and remembered always.
Thanks
NimishK