Input Box Script

Donald

Board Regular
Joined
Apr 15, 2002
Messages
138
I would like to have an input box where the inputted value will appear in the next open cell.
For Example:
If A4 has data, the inputted value will go into a5, and so forth.

At the same time, I would like to assign the current date for that inputted record in the column next to it (in column B)
For Example: A4 is used, the inputted value will appear in A5 with the today's date in B5.

Can this be done.
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Sure it can be done. Try the following:
Code:
Sub InputData()
inputstr = InputBox("Enter Data")
Set Rng = [a1].End(xlDown).Offset(1, 0)
Rng.Value = inputstr
Rng.Offset(0, 1).Value = Date
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,530
Messages
6,120,071
Members
448,943
Latest member
sharmarick

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