Form Combobox horizontal list help

Ben_goldfinch

New Member
Joined
Nov 15, 2016
Messages
11
I have a combobox where i am trying to get the list o refer to a horizontal list with he first cell named BBFCRatingStart and then to finish at the end of the list depending on how many cells are filled in this is what i have but clearly i am doing something wrong.
wsLists is is the name of the worksheet they are on and FilmCertificate is the name of the combobox on the form

FilmCertificate.List = Application.WorksheetFunction.Transpose(wsLists.Range("BBFCRatingStart:BBFCRatingStart.End(xlToRight))"))
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
How about something like:

Code:
FilmCertificate.List = Application.Transpose(Range(Range("BBFCRatingStart"), Range("BBFCRatingStart").End(xlToRight)))
 
Upvote 0

Forum statistics

Threads
1,214,429
Messages
6,119,424
Members
448,896
Latest member
MadMarty

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