Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 wrote in message ups.com... 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? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
DV dropdown font | Excel Discussion (Misc queries) | |||
Help...Using dropdown list | Excel Discussion (Misc queries) | |||
Excel 2002 dropdown lists | Excel Worksheet Functions | |||
offer dropdown options based on another dropdown | Excel Discussion (Misc queries) | |||
Excel dropdown with text and value | Excel Worksheet Functions |