ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   listbox rowsource from wrong workbook (https://www.excelbanter.com/excel-programming/344053-listbox-rowsource-wrong-workbook.html)

David Sisson[_2_]

listbox rowsource from wrong workbook
 
I have two workbooks open at the same time.

The macros are running from WB1 and processing info to and from WB2.

In WB1, I have a userform with a listbox. In the initialize sub of the
userform, I use rowsource to populate listbox from a Sheet located in
WB1. I have a fully qualified path to range.

The problem is that rowsource uses data from WB2, not WB1, to populate
listbox.

Here is the line of code from initialize sub.
ufRemList.lbTailNum.RowSource =
Workbooks("WB1.xls").Worksheets("Sheet3").Range("E 5:e184").Address(External
= True)


Dave Peterson

listbox rowsource from wrong workbook
 
Is it as simple as missing a colon:

ufRemList.lbTailNum.RowSource _
= Workbooks("WB1.xls").Worksheets("Sheet3").Range("E 5:e184") _
.Address(External:=True)

(External:=true)

And I'm confused about WB1 and WB2. In your text, you say you want to pick up
the list from WB2, but in the code you use WB1.

One of these things is not like the other???



David Sisson wrote:

I have two workbooks open at the same time.

The macros are running from WB1 and processing info to and from WB2.

In WB1, I have a userform with a listbox. In the initialize sub of the
userform, I use rowsource to populate listbox from a Sheet located in
WB1. I have a fully qualified path to range.

The problem is that rowsource uses data from WB2, not WB1, to populate
listbox.

Here is the line of code from initialize sub.
ufRemList.lbTailNum.RowSource =
Workbooks("WB1.xls").Worksheets("Sheet3").Range("E 5:e184").Address(External
= True)


--

Dave Peterson

David Sisson[_2_]

listbox rowsource from wrong workbook
 
Is it as simple as missing a colon:

Ugghh! That was it! Couldn't see the acorn for the forest. :)

And I'm confused about WB1 and WB2. In your text, you say you want to pick up
the list from WB2, but in the code you use WB1.


No. That was the problem. It was picking up data from WB2, and I
wanted it from WB1.

Thanks!



All times are GMT +1. The time now is 08:46 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com