...me perdoa por ter aberto outro post mais não tive outra escolhar...
Deverias ter continuado no mesmo tópico. Teste a instrunção abaixo.
Application.EnableEvents = False
Dim lastRow As Long
Dim lastResultRow As Long
Dim X As Long
' Verifica qual a ultima célula preenchida
lastRow = Plan17.Cells(Rows.Count, 1).End(xlUp).Row
lastResultRow = 2 'linha resultado
Me.LstConsultaSojaSaida.ListItems.Clear
' Ciclo em todas as linhas
For X = 2 To lastRow '1 Linha dados pequisa
' verifica se o valor é igual ao da pesquisa
If CDate(Plan17.Cells(X, 3).Value) >= CDate(txtDataInicial.Value) And CDate(Plan17.Cells(X, 3)) <= CDate(txtDataFinal) And Plan17.Cells(X, 6).Value = Me.ComboBox1 Then
' Copia os valores
LstConsultaSojaSaida.ListItems.Add 1, , Plan17.Cells(X, 2).Value 'Ticket
LstConsultaSojaSaida.ListItems(1).ListSubItems.Add 1, , Plan17.Cells(X, 3).Value 'Data
LstConsultaSojaSaida.ListItems(1).ListSubItems.Add 2, , Plan17.Cells(X, 4).Value 'Placa
LstConsultaSojaSaida.ListItems(1).ListSubItems.Add 3, , Plan17.Cells(X, 5).Value 'MOTORISTA
LstConsultaSojaSaida.ListItems(1).ListSubItems.Add 4, , Plan17.Cells(X, 6).Value 'CONTRATANTE
LstConsultaSojaSaida.ListItems(1).ListSubItems.Add 5, , Plan17.Cells(X, 7).Value 'TARA
LstConsultaSojaSaida.ListItems(1).ListSubItems.Add 6, , Plan17.Cells(X, 8).Value 'PESO BRUTO
LstConsultaSojaSaida.ListItems(1).ListSubItems.Add 7, , Plan17.Cells(X, 9).Value 'UNID.
LstConsultaSojaSaida.ListItems(1).ListSubItems.Add 8, , Plan17.Cells(X, 10).Value 'IMPUR.
LstConsultaSojaSaida.ListItems(1).ListSubItems.Add 8, , Plan17.Cells(X, 11).Value 'AVAR.
LstConsultaSojaSaida.ListItems(1).ListSubItems.Add 10, , Plan17.Cells(X, 12).Value 'PESO LIQ. BRUTO
LstConsultaSojaSaida.ListItems(1).ListSubItems.Add 11, , Plan17.Cells(X, 13).Value 'TOTAL DE DESC.
LstConsultaSojaSaida.ListItems(1).ListSubItems.Add 12, , Plan17.Cells(X, 14).Value 'PESO LIQ. CORRIGIDO
lastResultRow = lastResultRow + 1
End If
Next
Application.EnableEvents = True
Existem mil maneiras de preparar Neston. Invente a sua!
http://www.youtube.com/ExpressoExcel
Postado : 25/02/2012 1:03 pm