littleguy1810
New Member
- Joined
- Aug 21, 2014
- Messages
- 40
Hi All,
Hope someone can help me, I have a simple stock control user interface spreadsheet (got it from here reading posts, thanks) I need help in changing it a bit so I can use it suitable for my industry.
I have a number of questions so I will just start with one.
There is a field which asks for a Part ID, which when selected it shows both Part ID & Description which is exactly what I want, but when a part is selected only the part ID is shown can someone help me so it will show both when selected thanks.
The code I think is as follows:
For Each cPart In ws.Range("PartIDList")
With Me.cboPart
.AddItem cPart.Value
.List(.ListCount - 1, 1) = cPart.Offset(0, 1).Value
End With
Next cPart
Thanks
Hope someone can help me, I have a simple stock control user interface spreadsheet (got it from here reading posts, thanks) I need help in changing it a bit so I can use it suitable for my industry.
I have a number of questions so I will just start with one.
There is a field which asks for a Part ID, which when selected it shows both Part ID & Description which is exactly what I want, but when a part is selected only the part ID is shown can someone help me so it will show both when selected thanks.
The code I think is as follows:
For Each cPart In ws.Range("PartIDList")
With Me.cboPart
.AddItem cPart.Value
.List(.ListCount - 1, 1) = cPart.Offset(0, 1).Value
End With
Next cPart
Thanks