Dimitris254
Board Regular
- Joined
- Apr 25, 2016
- Messages
- 139
i'd like a simple "status" drop-down menu to appear in the selected cell.
the options are pre-defined:
"Not started" (appears by default)
"Work in progress"
"Finished"
"Not applicable"
I would like to define a name for the cells containing the status, so i don't know if a commobox can work.
something like:
the options are pre-defined:
"Not started" (appears by default)
"Work in progress"
"Finished"
"Not applicable"
I would like to define a name for the cells containing the status, so i don't know if a commobox can work.
something like:
Rich (BB code):
With ActiveCell
' drop-down menu
create drop-down list
option 1= "Not started" --> set default
option 2= "Work in progress"
option 3= "Finished"
option 4= "Not applicable"
' define name
.Name = "status"
End with