Hi John
I would add data validation to the cell so that users can only select
values from the list as it appears on the form.
First you would need to add a named range using the same offset formula
used for the combobox. You could either do this manually (it only needs
to be done once) or via code eg:
ActiveWorkbook.Names.Add Name:="theList", RefersToR1C1:= _
"=OFFSET(category!R1C1,0,0,COUNTA(category!C1),1)"
You click event could then look like this;
Code:
--------------------
Private Sub CommandButton1_Click()
Dim iRow As Long
Dim ws As Worksheet
Set ws = Worksheets("Sheet1")
'find first empty row in database
iRow = ws.Cells(Rows.Count, 1) _
.End(xlUp).Offset(1, 0).Row
'Add data validation
With ws.Cells(iRow, 1).Validation
.Delete
.Add Type:=xlValidateList, Formula1:="=theList"
.IgnoreBlank = True
End With
'copy the data to the database
ws.Cells(iRow, 1).Value = Me.ComboBox1.Value
'clear the data
Me.ComboBox1.Value = ""
End Sub
--------------------
Hope this helps
Rowan
john_t_h wrote:
> Rowan Wrote:
>
>>This would work by creating a named range using:
>>
>>=OFFSET(category!$A$1,0,0,COUNTA(category!$A:$A),1) < note minor
>>change
>>
>>
>
>
> Thanks Rowan,
>
> Minor change you suggested got rid a blank entry in the combobox 
>
> Now that this working great it occured to me that once the form writes
> the row the worksheet, users can still go in and corrupt the data by
> over-typing. The whole reason to use a UserForm was to maintain
> consistaincy in the values to allow sorting and reporting.
>
> Is there a way when the value it inserted from the Userform, the
> worksheet cell is formated as a combobox. Obviously the original form
> value would be displayed, but I would like the users to be able to
> select one of the other values at a later date.
>
> This is a cutdown version of my form submit code (at home now and my
> real one is at work)
>
>
> Code:
> --------------------
> Private Sub CommandButton1_Click()
> Dim iRow As Long
> Dim ws As Worksheet
> Set ws = Worksheets("Sheet1")
>
> 'find first empty row in database
> iRow = ws.Cells(Rows.Count, 1) _
> .End(xlUp).Offset(1, 0).Row
>
> 'copy the data to the database
> ws.Cells(iRow, 1).Value = Me.ComboBox1.Value
>
> 'clear the data
> Me.ComboBox1.Value = ""
>
> End Sub
>
> --------------------
>
>
> Is there something I can do at this ws.Cells(iRow, 1).Value =
> Me.ComboBox1.Value stage to provide the cell format?
>
>
Bookmarks