AddRange Code?

emily2309

Board Regular
Joined
Nov 17, 2009
Messages
51
Is there something similar to the additem code, where you can actually add a range from the spreadsheet, rather than a single item, to avoid writing out long lists?
Thanks :)
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Do you mean something like

Code:
UserForm1.ListBox1.RowSource = Worksheets("Sheet1").Range("A1:A10").Address(external:=True)
 
Upvote 0
I have used the following IF statement, however it is not working. Is there a way i can rearrange it to make it work?
If Cbo_FoodGroup = "carb_products" Then Cbo_FoodItem.List = Worksheets("foodtable").Range("B2:B215").Value End If
 
Upvote 0
Try:

Code:
If Cbo_FoodGroup = "carb_products" Then
    Cbo_FoodItem.List = Worksheets("foodtable").Range("B2:B215").Value
End If
 
Upvote 0
I have used that code, however the food item combo box is still not showing anything when i choose carb_products in the food group combo box.
 
Upvote 0

Forum statistics

Threads
1,214,867
Messages
6,122,002
Members
449,059
Latest member
mtsheetz

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