Inputbox in one row

samahiji

Board Regular
Joined
Oct 6, 2015
Messages
82
Office Version
  1. 2019
Platform
  1. Windows
Hello,
I've got the following code to write the value of inputbox in a column and I want the value to be in a row instead.

The code was provided by:

Rick Rothstein

VBA Code:
Sub SplitInputBoxEntryDown()
  Dim Parts() As String
  On Error GoTo NoText
  Parts = Split(Replace(InputBox("Enter the values separated by commas"), ", ", ","), ",")
  Columns("A").Clear
  With Range("A2").Resize(1 + UBound(Parts))
    .NumberFormat = "@"
    .Cells = Application.Transpose(Parts)
  End With
NoText:
End Sub

can anybody revise the code above to write the values of inputbox to row#1
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Instead of:
VBA Code:
 With Range("A2").Resize(1 + UBound(Parts))
use
VBA Code:
 With Range("A2").Resize(1,1 + UBound(Parts))
 
Upvote 0

Forum statistics

Threads
1,215,108
Messages
6,123,134
Members
449,098
Latest member
Doanvanhieu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top