ListBox executing incorrect transpose in the Worksheet.

Jom

New Member
Joined
Feb 19, 2021
Messages
36
Office Version
  1. 2016
Platform
  1. Windows
Could you help me? ListBox executing incorrect transpose in the Worksheet3
My Command Button sends ListBox data to Sheet 2 and Sheet 3.

The ListBox has 2 columns.
Column 1 = numbers
Column 2 = Colors (Ex. "green","blue","black")

Worksheet 2 receives the data from the 2 columns of the ListBox (Column A= numbers / Column B = colors).
Worksheet 3 needs to receive ONLY the data from column 1 of the ListBox, using transpose for the columns of row 2.

It needs to happen in the following way:
Worksheet2
223 Green
224 Green
225 Green
567 Blue
568 Blue

Worksheet3
Line 2: A2=223/B2=224/C2=225/D2=567/E2=568 ...etc (regardless of how many records have in the ListBox.)
(Here, runing incorrectly.)

Error: The next records replace the previous records. They are sent on over of the previous ones. It should be sent to the next empty columns.
Below is my code:


VBA Code:
Private Sub CommandButton2_Click()

'Worksheet2 ---------------(occurs correctly)
Worksheet2.Select
Worksheet2.Range("A3").Select

For i = 0 To UserForm1.ListBox1.ListCount - 1
Do
If Not (IsEmpty(ActiveCell)) Then
ActiveCell.Offset(1, 0).Select
End If

Loop Until IsEmpty(ActiveCell) = True
ActiveCell.Value = ListBox1.List(i, 0)
ActiveCell.Offset(0, 1).Value = ListBox1.List(i, 1)

Next

'(Worksheet3) ---------(occurs incorrectly)

Dim Lin As Long
Dim Col As Long

Lin = 2
'Worksheet2.Range("A3").Select

For Col = 0 To ThisWorkbook.Sheets("Worksheet3").Cells(Lin, Columns.Count).End(xlToRight).Value
For n = 0 To ListBox1.ListCount - 1

    Col = Col + 1
    ThisWorkbook.Sheets("Worksheet3").Cells(Lin, Col).Value = Application.Transpose(ListBox1.List(n))

Next
Next
End Sub


I don't know where the error is. Help me please.
 
Last edited by a moderator:

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Correcting ... the "negative" sign in this line of code is "n"
ThisWorkbook.Sheets("Worksheet3").Cells(Lin, Col).Value = Application.Transpose(ListBox1.List(n))
 
Upvote 0
How about
VBA Code:
'(Worksheet3) ---------(occurs incorrectly)

Dim Lin As Long
Dim Col As Long

Lin = 2
'Worksheet2.Range("A3").Select
Col = ThisWorkbook.Sheets("Worksheet3").Cells(Lin, Columns.Count).End(xlToRight).Value
For n = 0 To ListBox1.ListCount - 1

    Col = Col + 1
    ThisWorkbook.Sheets("worksheet3").Cells(Lin, Col).Value = ListBox1.List(n)

Next
End Sub
 
Upvote 0
Nothing changed/ Not at all.
The new records continue to be saved on top of the previous ones. And instead of being recorded in the next empty columns, the records always start in column A.
That is an error because it replaces the records that were already there.
 
Upvote 0
How about
VBA Code:
Col = ThisWorkbook.Sheets("worksheet3").Cells(Lin, Columns.Count).End(xlToLeft).Column
 
Upvote 0
Solution
It remains the same.
He needs to save in the next empty columns.
This is not happening.
 
Upvote 0
Step through the code using F8 & after running that line, hover the mouse over the variable col, what does it show?
 
Upvote 0
If col =1 then there is nothing on row 2 of that sheet, other than possibly in col A
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,202
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top