C
Christy
I have a list box that displays pending transactions
stored in rows on a worksheet. I want to be able to click
on one of these list box items and have the info from the
appropriate row load back into another user form for
editing. The information for the 1st item in the list
comes from row 2 and so (ListIndex + 1). Here is what I
have but it does not seem to work. Any help would be
greatly appreciated.
Private Sub lbPending_Click()
Dim j As Long
lbPending.ListIndex = i
j = i + 1
ufEntry.Hide
ufCreate.Show
ufCreate.tbDiscription.Value = Worksheets
("PendingLog").Range("c" & j).Value
End Sub
stored in rows on a worksheet. I want to be able to click
on one of these list box items and have the info from the
appropriate row load back into another user form for
editing. The information for the 1st item in the list
comes from row 2 and so (ListIndex + 1). Here is what I
have but it does not seem to work. Any help would be
greatly appreciated.
Private Sub lbPending_Click()
Dim j As Long
lbPending.ListIndex = i
j = i + 1
ufEntry.Hide
ufCreate.Show
ufCreate.tbDiscription.Value = Worksheets
("PendingLog").Range("c" & j).Value
End Sub