Gente me ajudaa!!
Por que não consigo trazer o valor da 3 coluna do listbox1????
a questão está nas linhas abaixo do codigo em destaque. Quero que escreva na coluna "O" o resultado do listbox selecionado na coluna 3!
Help
ListBox1.BoundColumn = 3
Sheets("Pedidos").Range("O" & j).Value = ListBox1.List(i)
Private Sub CommandButton2_Click()
Dim i, j, UltimaLinha As Integer
UltimaLinha = Sheets("Pedidos").Cells(Cells.Rows.Count, 1).End(xlUp).Row
If UltimaLinha < 3 Then UltimaLinha = 3
For j = 3 To UltimaLinha
For i = 0 To ListBox1.ListCount - 1
If Sheets("Pedidos").Range("A" & j).Value = Val(ListBox1.List(i)) Then
Sheets("Pedidos").Range("R" & j).Value = CDate(data.Value)
Sheets("Pedidos").Range("M" & j).Value = "ENVIADO"
Sheets("Pedidos").Range("AR" & j).Value = "SIM"
ListBox1.BoundColumn = 3
Sheets("Pedidos").Range("O" & j).Value = ListBox1.List(i)
End If
Next
Next
End Sub
Atenciosamente,
Alex Lacerda
[email protected]
Postado : 22/08/2012 1:40 pm