Hello eklarsen,
Here is an example of how to set multiple cells equal to the list box value. The example uses a list box named ListBox1. The code in the click event will transfer the selected list item to 3 cells on Worksheet "Sheet1". Cells A2, B6, and C8 will equal what was seelcted in ListBox1. You can change the ListBox and Worksheet names to what you are using. Just place the code in the list box's Click event.
Private Sub ListBox1_Click()
Dim Data As String
With ListBox1
Data = .List(.ListIndex)
End With
With Worksheets("Sheet1")
.Range("A2").Value = Data
.Range("B4").Value = Data
.Range("C6").Value = Data
End With
End Sub
Sincerely,
Leith Ross
Bookmarks