Merhaba, aşağıdaki kodda listbox2'ye veri alabiliyorum. Fakat listbox sütununa gelen tarihler ters formatta geliyor. Gün-Ay-Yıl şeklinde nasıl düzeltebiliriz.
With Sheets("malzeme")
sat = Sheets("malzeme").Cells(Rows.Count, "B").End(xlUp).Row
For i = 4 To sat
If Sheets("malzeme").Cells(i, "I").Value = ComboBox1.Text Then
ListBox2.AddItem
ListBox2.List(b, 0) = (Sheets("malzeme").Cells(i, "B").Value)
ListBox2.List(b, 1) = (Sheets("malzeme").Cells(i, "D").Value)
ListBox2.List(b, 2) = (Sheets("malzeme").Cells(i, "E").Value)
ListBox2.List(b, 3) = (Sheets("malzeme").Cells(i, "F").Value)
b = b + 1
End If
Next
End With
With Sheets("malzeme")
sat = Sheets("malzeme").Cells(Rows.Count, "B").End(xlUp).Row
For i = 4 To sat
If Sheets("malzeme").Cells(i, "I").Value = ComboBox1.Text Then
ListBox2.AddItem
ListBox2.List(b, 0) = (Sheets("malzeme").Cells(i, "B").Value)
ListBox2.List(b, 1) = (Sheets("malzeme").Cells(i, "D").Value)
ListBox2.List(b, 2) = (Sheets("malzeme").Cells(i, "E").Value)
ListBox2.List(b, 3) = (Sheets("malzeme").Cells(i, "F").Value)
b = b + 1
End If
Next
End With