how do you create a drop down list for the user to select from in vba? In the code I have, the user has been manually typing in the name of the Key Account Manager:
I want to remove any margin for error by having them select from a list instead. My named range with the list of names in is called "Key_Account_Manager"
Code:
KAM = InputBox("Enter Key Account Manager's Name:", "Name Required")
I want to remove any margin for error by having them select from a list instead. My named range with the list of names in is called "Key_Account_Manager"