jardenp
Active Member
- Joined
- May 12, 2009
- Messages
- 373
- Office Version
- 2019
- 2016
- 2013
- 2011
- 2010
- Platform
- Windows
I would like to use an input box that allows for users to enter multiple inputs separated by commas and then writes the result to cells on a sheet as text.
For example, if a user enters "364, 212, Tommy, 008" into the InputBox, the result would be:
[TABLE="class: grid, width: 100"]
<tbody>[TR]
[TD]364[/TD]
[/TR]
[TR]
[TD]212[/TD]
[/TR]
[TR]
[TD]Tommy[/TD]
[/TR]
[TR]
[TD]008[/TD]
[/TR]
</tbody>[/TABLE]
An entry of "Smith" (no commas involved) would result in:
[TABLE="class: grid, width: 100"]
<tbody>[TR]
[TD]Smith[/TD]
[/TR]
</tbody>[/TABLE]
I don't know how many inputs will be included in each entry or else I would just write the full entry to a cell and parse it on the sheet.
Thanks,
Josh in IN
For example, if a user enters "364, 212, Tommy, 008" into the InputBox, the result would be:
[TABLE="class: grid, width: 100"]
<tbody>[TR]
[TD]364[/TD]
[/TR]
[TR]
[TD]212[/TD]
[/TR]
[TR]
[TD]Tommy[/TD]
[/TR]
[TR]
[TD]008[/TD]
[/TR]
</tbody>[/TABLE]
An entry of "Smith" (no commas involved) would result in:
[TABLE="class: grid, width: 100"]
<tbody>[TR]
[TD]Smith[/TD]
[/TR]
</tbody>[/TABLE]
I don't know how many inputs will be included in each entry or else I would just write the full entry to a cell and parse it on the sheet.
Thanks,
Josh in IN