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

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
How about something like:

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

Forum statistics

Threads
1,214,982
Messages
6,122,573
Members
449,089
Latest member
Motoracer88

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