Populate Listbox with another listbox

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Just assign the List property of one to the other - eg:

Code:
Listbox2.List = Listbox1.list
 
Upvote 0
Just assign the List property of one to the other - eg:

Code:
Listbox2.List = Listbox1.list

this code worked. however i just realized that i could not achieve what i wanted with it.
what i actually wanted to do is to remove some characters from the first listbox and put the remaining characters in the second listbox, can you help out with this?
 
Upvote 0
Only if you give more detail as that's a pretty vague question currently. ;)
 
Upvote 0
this code worked. however i just realized that i could not achieve what i wanted with it.
what i actually wanted to do is to remove some characters from the first listbox and put the remaining characters in the second listbox, can you help out with this?

You could assign the values of the first listbox to an array and then make your changes to the array. Once those are made, you can assign the array to the 2nd listbox like this:

array() = ListBox1.list
'Make your changes to the contents in the array
ListBox2.list = array()
 
Upvote 0

Forum statistics

Threads
1,215,943
Messages
6,127,826
Members
449,411
Latest member
adunn_23

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