View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Steve[_4_] Steve[_4_] is offline
external usenet poster
 
Posts: 184
Default Remove data from column

Hi Don. The column of data, and field that I want to delete is in a
hidden sheet. The column of data feeds a dynamic named range, which
is used in a data validation picklist on a different sheet. So yes, I
would usually only delete one field...just in a nice user interface
vs. toggling over to another sheet, which we have hidden. This file
will be used in a conference room setting, projected on the wall...so
we're trying to make changes quickly and seem somewhat
sophisticated :)

On Feb 9, 4:34*pm, Don Guillett wrote:
If you only want to delete 1, just do it. I assume??? you want to
delete more. ??Explain. Perhaps using datafilterautofilter is the
simple answer.

On Feb 9, 3:56*pm, Steve wrote:



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- Hide quoted text -


- Show quoted text -