Hi
Do you want to add the value selected on the form to excel when you push OK?
Try this
On the click sub of the OK button put this
assuming you want to put the value in A1 of Sheet1 and the name is inputted in Listbox1 modify as needed.
Sheets("Sheet1").range("A65536").end(xlup).offset(1,0).formulaR1C1 = Listbox1.value
If this isnt what you needed post a responce with some more info.
HTH
Jacob
Try this:
Build a data list to the right of a sheet (to the right of the visible screen) the lables must be in the first row. Then select a cell in the table where data will go, any cell not a lable. Once Excel finds your table after the first use you will not need to select a data cell again. Then move left and select Data from the menu bar then select Form. Excel will automatically build a data input form based upon the lables of your data list. The form has more features than you could easily code yourself. Such as auto delete, filter by criteria and it places your data in your table all by itself. JSW