Themabewertung:
  • 1 Bewertung(en) - 5 im Durchschnitt
  • 1
  • 2
  • 3
  • 4
  • 5
Zellenformatierung Listbox gleiches Format
#14
Hallo Frank,

entweder so:
Code:
    With ListBox1
        For i = 2 To Tabelle1.Cells(Rows.Count, 1).End(xlUp).Row
            .AddItem destinationWorksheetPrüfkontur.Cells(i, 1).Text
            .List(.ListCount - 1, 1) = destinationWorksheetPrüfkontur.Cells(i, 2)
            .List(.ListCount - 1, 2) = destinationWorksheetPrüfkontur.Cells(i, 3)
            .List(.ListCount - 1, 3) = destinationWorksheetPrüfkontur.Cells(i, 4)
        Next i
    End With

oder so:
Code:
    With destinationWorksheetPrüfkontur
        For i = 2 To Tabelle1.Cells(Rows.Count, 1).End(xlUp).Row
            ListBox1.AddItem .Cells(i, 1).Text
            ListBox1.List(ListBox1.ListCount - 1, 1) = .Cells(i, 2)
            ListBox1.List(ListBox1.ListCount - 1, 2) = .Cells(i, 3)
            ListBox1.List(ListBox1.ListCount - 1, 3) = .Cells(i, 4)
        Next i
    End With

Prinzipiell ist .AddItem die lahmste Methode um eine Listbox zu füllen.
Das macht nur bei kleinen Datenaufkommen und max. 10 Spalten Sinn.
 
Gruß Uwe
Zitieren


Nachrichten in diesem Thema
RE: Zellenformatierung Listbox gleiches Format - von PetrolMaxxe - 23.07.2024, 19:24

Gehe zu:


Benutzer, die gerade dieses Thema anschauen: 6 Gast/Gäste




Hinweis auf Angebot Excel-Inside - lang    Keine Lösung gefunden? Du kannst Dich gerne an unser erfahrenes Experten-Team wenden um dein Anliegen zu besprechen.
   Gerne erstellen wir auf dieser Basis ein Angebot.
   Sende deine Anfrage einfach
per E-Mail an anfrage@excel-inside.de


Powerd and supported by Excel-InsideSolutions