lizziegirl
New Member
- Joined
- Apr 3, 2006
- Messages
- 31
Afternoon,
I was hoping someone could help me regarding a textbox I am trying to manipulate.
This textbox has a default value of John Smith. The user can either accept this as is or amend to another name.
On CommandButton execution, I want John Smith (or whatever the user has entered) to go to one cell and then only the word John to go to another cell.
Is this possible? The code below takes John Smith to d13, however I want only the first word (in this case the first name John) to go to b43 also.
I was hoping someone could help me regarding a textbox I am trying to manipulate.
This textbox has a default value of John Smith. The user can either accept this as is or amend to another name.
On CommandButton execution, I want John Smith (or whatever the user has entered) to go to one cell and then only the word John to go to another cell.
Is this possible? The code below takes John Smith to d13, however I want only the first word (in this case the first name John) to go to b43 also.
Code:
ThisWorkbook.Sheets("Order").Range("d13").Value = Order_Details.TextBox1.Value()