HOW TO CREATE A MULTI-SELECT DROP-DOWN LIST IN EXCEL - Employee Termination Checklist Template // Learn to setup a drop-down list in Excel that allows users to make multiple selections. This method uses some VBA code that places the selected items on new lines within the drop-down cell. The example form used in this video is an Employee Termination Checklist that allows the manager filling in the form to select multiple items from an issued equipment list that they have retrieved from an exiting employee.
The template from this video is available for download for a minimal fee and here is a link if you are interested in purchasing it (thanks for supporting my channel!): [ Ссылка ]
TIP: If you use Macros (VBA code) in your document, make sure your IT department allows the use of Macros, otherwise users may have issues opening the document. Remember to save your document as a Macro-Enabled file type (.xlsm).
Here is the VBA code we used in the video:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Oldvalue As String
Dim Newvalue As String
Application.EnableEvents = True
On Error GoTo Exitsub
If Target.Address = "$A$10" Or Target.Address = "$D$10" Then
If Target.SpecialCells(xlCellTypeAllValidation) Is Nothing Then
GoTo Exitsub
Else: If Target.Value = "" Then GoTo Exitsub Else
Application.EnableEvents = False
Newvalue = Target.Value
Application.Undo
Oldvalue = Target.Value
If Oldvalue = "" Then
Target.Value = Newvalue
Else
If InStr(1, Oldvalue, Newvalue) = 0 Then
Target.Value = Oldvalue & vbNewLine & Newvalue
Else:
Target.Value = Oldvalue
End If
End If
End If
End If
Application.EnableEvents = True
Exitsub:
Application.EnableEvents = True
End Sub
__________
RESOURCES & GEAR
✦ Screen Recording Software: [ Ссылка ]
✦ Green Screen: [ Ссылка ]
✦ Camera: [ Ссылка ]
✦ PresenterMedia: [ Ссылка ]=
Some links included here are affiliate links. If you click on these links and make a purchase, I may earn a small commission at no additional cost to you. Thanks for supporting this channel!
__________
NOTE: If you found this content helpful, please consider donating to my channel from this PayPal link: [ Ссылка ]. Your donation, no matter what amount, is greatly appreciated and goes towards producing content that enhances your productivity and elevates your skills. Thanks for supporting this channel!
__________
FREE DOWNLOADS:
✦ Visit [ Ссылка ] to sign-up for my e-mail list and get FREE downloads of super helpful spreadsheet formulas, dashboards and Org Chart templates for HR professionals.
__________
CONNECT WITH ME:
Visit my website: [ Ссылка ] for more information, tools and resources.
LinkedIn: [ Ссылка ]
Twitter: [ Ссылка ]
__________
KEYWORDS: #MSExcel, #M365, How To Create Fillable Forms in Excel, How To Create Drop-Down List in Excel, How To Create a Form in Excel, Link Text to Drop-Down Using IF Formula, Link Text to Drop-Down Using VLOOKUP, Insert Checkboxes in Excel, How To Hide Worksheet Tabs in Excel, Employee Engagement Survey Template, How To Hide Spreadsheet in Excel, How To Hide Workbook in Excel, How to Unhide Very Hidden Tabs in Excel, Excel Fillable Forms, Excel Tutorial, Excel Lesson, Excel Tips and Tricks, Sharon Smith HR, @SharonSmithHR
__________
PLAYLISTS:
➤Creating Fillable Forms: [ Ссылка ]
➤PowerPoint Tutorials for HR: [ Ссылка ]
➤ Excel Tutorials for HR: [ Ссылка ]
➤ Excel Quickies (Around 2 Minutes): [ Ссылка ]
➤ Word Tutorials for HR: [ Ссылка ]
➤ Welcome | About Me: [ Ссылка ]
How to Create A Multi-Select Drop-Down List in Excel
Теги
how to create a multi-select drop-down list in excelexcel fillable formexcel fillable fieldsmicrosoft excel fillable formmultiple selection dropdown excelmultiple selections in a drop down list in excelexcel tutorialvba excelmacro enabled form in excelmacro enabled excel fileemployee termination exampleemployee termination checklistexcel form template with drop down listfillable excel form templatecreate fillable form in excelexcel drop down list