S
Steve
Hi all. I have the following bit of code that presents an input box
for a user to add data to the next available cell in column A. I
would like to now present the user with a pop-up menu picklist that
will display all entries in column A, allow them to pick on, and upon
clicking OK remove that selected item from column A.
Any ideas? Thanks!
Sub NewCategory()
Dim ans As String
ans = InputBox("Enter New Category", "New Category")
Sheets("Cat Picklist").Cells(2, "a").End(xlDown).Offset(1) = ans
End Sub
for a user to add data to the next available cell in column A. I
would like to now present the user with a pop-up menu picklist that
will display all entries in column A, allow them to pick on, and upon
clicking OK remove that selected item from column A.
Any ideas? Thanks!
Sub NewCategory()
Dim ans As String
ans = InputBox("Enter New Category", "New Category")
Sheets("Cat Picklist").Cells(2, "a").End(xlDown).Offset(1) = ans
End Sub