Dropdown box

  • Thread starter Thread starter markelbourno
  • Start date Start date
M

markelbourno

I have a spreadsheet with 6 drop down boxes. Is there away to make the
dropdown boxes in a specific default every time another user opens it?
 
Create a macro in your workbook. The below example will set cell A1 to 0
everytime the workbook is opened. Alter this to modify the values your drop
down boxes are linked to.

Private Sub Workbook_Open()
Range("A1").Select
ActiveCell.FormulaR1C1 = "0"
End Sub

Tieske
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top