TimvMechelen
Board Regular
- Joined
- Nov 7, 2016
- Messages
- 121
Hi,
Is it possible to get a dropdown list with VBA InputBox?
The dropdown list has to refer to the table[column]: "TabelMatriaalinformatie[Materiaal:]"
Thank you for you time.
A part of the VBA code i have now:
Now you can put in something manualy.
Can this be a dropdown list?
Is it possible to get a dropdown list with VBA InputBox?
The dropdown list has to refer to the table[column]: "TabelMatriaalinformatie[Materiaal:]"
Thank you for you time.
A part of the VBA code i have now:
Code:
Dim Materials As Variant
Sheets("Beginblad").Select
Materials = Inputbox("Material:" , "Algemene gegevens product",Range("D13"))
Range("D13").Value = Materials
Now you can put in something manualy.
Can this be a dropdown list?