ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Populate Cells With Range Via ComboBox (https://www.excelbanter.com/excel-programming/414882-populate-cells-range-via-combobox.html)

BJ

Populate Cells With Range Via ComboBox
 
I have several different pricing arrangements. This is what they look like:

No. 1
ModelA ModelB ModelC
Item1 $ $ $
Item2 ...

No. 2
ModelA ModelC ModelD
Item1
Item3

No. 3
ModelB ModelC Model D Model E
Item 2
Item 3
Item 4

I have set up the unique Item and Model lists as ranges in another
worksheet. When the user selects the pricing arrangement (No. 1, No. 2 or
No. 3) I would like to populate a specific area in another location with the
appropriate table. Right now I am populating the row and column headings via
a combobox that has the various pricing arrangements as its fill range using
a hard link to the source where the range is named ... e.g.:
if ComboBox1.Value = "No. 1" Then
Sheets ("Specific Location").Range ("A1") = Sheets ("SourceMap").Range ("C42")
....

This will work fine until someone wants or needs to update the source
document and all of these codings might be lost. I was curious to know if I
can populate a range of cells (the row and column headings) using a named
range instead of cell references ... e.g.:

Sheets ("Specific Location").Range ("A1:A3") = Range ("No. 1_RowHeadings")

I've tried the coding above but it didn't work so obviously I'm not doing
something properly or maybe it just can't be done.

Thanks.

ryguy7272

Populate Cells With Range Via ComboBox
 
I'm not absolutely sure this will help you, but I think it probably will:
http://www.contextures.com/xlDataVal10.html
http://www.contextures.com/xlDataVal11.html

Regards,
Ryan---

--
RyGuy


"BJ" wrote:

I have several different pricing arrangements. This is what they look like:

No. 1
ModelA ModelB ModelC
Item1 $ $ $
Item2 ...

No. 2
ModelA ModelC ModelD
Item1
Item3

No. 3
ModelB ModelC Model D Model E
Item 2
Item 3
Item 4

I have set up the unique Item and Model lists as ranges in another
worksheet. When the user selects the pricing arrangement (No. 1, No. 2 or
No. 3) I would like to populate a specific area in another location with the
appropriate table. Right now I am populating the row and column headings via
a combobox that has the various pricing arrangements as its fill range using
a hard link to the source where the range is named ... e.g.:
if ComboBox1.Value = "No. 1" Then
Sheets ("Specific Location").Range ("A1") = Sheets ("SourceMap").Range ("C42")
...

This will work fine until someone wants or needs to update the source
document and all of these codings might be lost. I was curious to know if I
can populate a range of cells (the row and column headings) using a named
range instead of cell references ... e.g.:

Sheets ("Specific Location").Range ("A1:A3") = Range ("No. 1_RowHeadings")

I've tried the coding above but it didn't work so obviously I'm not doing
something properly or maybe it just can't be done.

Thanks.


BJ

Populate Cells With Range Via ComboBox
 
Thanks but I'm trying to get a combobox to populate multiple cells at once -
not looking for a dropdown. So if a user selects 'No. 1' pricing, the
combobox programming will put an array of data - say A1:D3 - into a specific
area of a worksheet. Right now I have to program the code to place each
individual cell's data one cell at a time.

"ryguy7272" wrote:

I'm not absolutely sure this will help you, but I think it probably will:
http://www.contextures.com/xlDataVal10.html
http://www.contextures.com/xlDataVal11.html

Regards,
Ryan---

--
RyGuy


"BJ" wrote:

I have several different pricing arrangements. This is what they look like:

No. 1
ModelA ModelB ModelC
Item1 $ $ $
Item2 ...

No. 2
ModelA ModelC ModelD
Item1
Item3

No. 3
ModelB ModelC Model D Model E
Item 2
Item 3
Item 4

I have set up the unique Item and Model lists as ranges in another
worksheet. When the user selects the pricing arrangement (No. 1, No. 2 or
No. 3) I would like to populate a specific area in another location with the
appropriate table. Right now I am populating the row and column headings via
a combobox that has the various pricing arrangements as its fill range using
a hard link to the source where the range is named ... e.g.:
if ComboBox1.Value = "No. 1" Then
Sheets ("Specific Location").Range ("A1") = Sheets ("SourceMap").Range ("C42")
...

This will work fine until someone wants or needs to update the source
document and all of these codings might be lost. I was curious to know if I
can populate a range of cells (the row and column headings) using a named
range instead of cell references ... e.g.:

Sheets ("Specific Location").Range ("A1:A3") = Range ("No. 1_RowHeadings")

I've tried the coding above but it didn't work so obviously I'm not doing
something properly or maybe it just can't be done.

Thanks.


BJ

Populate Cells With Range Via ComboBox
 
thanks ryan but still not what i was looking for.

i need the programming code to place an array or range of data all at once
instead of cell by cell. i dont know how to do that ... there must be a
solution.

bj

"ryguy7272" wrote:

I'm not absolutely sure this will help you, but I think it probably will:
http://www.contextures.com/xlDataVal10.html
http://www.contextures.com/xlDataVal11.html

Regards,
Ryan---

--
RyGuy


"BJ" wrote:

I have several different pricing arrangements. This is what they look like:

No. 1
ModelA ModelB ModelC
Item1 $ $ $
Item2 ...

No. 2
ModelA ModelC ModelD
Item1
Item3

No. 3
ModelB ModelC Model D Model E
Item 2
Item 3
Item 4

I have set up the unique Item and Model lists as ranges in another
worksheet. When the user selects the pricing arrangement (No. 1, No. 2 or
No. 3) I would like to populate a specific area in another location with the
appropriate table. Right now I am populating the row and column headings via
a combobox that has the various pricing arrangements as its fill range using
a hard link to the source where the range is named ... e.g.:
if ComboBox1.Value = "No. 1" Then
Sheets ("Specific Location").Range ("A1") = Sheets ("SourceMap").Range ("C42")
...

This will work fine until someone wants or needs to update the source
document and all of these codings might be lost. I was curious to know if I
can populate a range of cells (the row and column headings) using a named
range instead of cell references ... e.g.:

Sheets ("Specific Location").Range ("A1:A3") = Range ("No. 1_RowHeadings")

I've tried the coding above but it didn't work so obviously I'm not doing
something properly or maybe it just can't be done.

Thanks.


ryguy7272

Populate Cells With Range Via ComboBox
 
Sorry, I don't think I know how to do what you want. Repost your question,
with as much detail as you would deem reasonable, and this fresh post will go
to the top of the list and soon 'fresh' pairs of eyes will be reviewing it.


Regards,
Ryan---

--
RyGuy


"BJ" wrote:

thanks ryan but still not what i was looking for.

i need the programming code to place an array or range of data all at once
instead of cell by cell. i dont know how to do that ... there must be a
solution.

bj

"ryguy7272" wrote:

I'm not absolutely sure this will help you, but I think it probably will:
http://www.contextures.com/xlDataVal10.html
http://www.contextures.com/xlDataVal11.html

Regards,
Ryan---

--
RyGuy


"BJ" wrote:

I have several different pricing arrangements. This is what they look like:

No. 1
ModelA ModelB ModelC
Item1 $ $ $
Item2 ...

No. 2
ModelA ModelC ModelD
Item1
Item3

No. 3
ModelB ModelC Model D Model E
Item 2
Item 3
Item 4

I have set up the unique Item and Model lists as ranges in another
worksheet. When the user selects the pricing arrangement (No. 1, No. 2 or
No. 3) I would like to populate a specific area in another location with the
appropriate table. Right now I am populating the row and column headings via
a combobox that has the various pricing arrangements as its fill range using
a hard link to the source where the range is named ... e.g.:
if ComboBox1.Value = "No. 1" Then
Sheets ("Specific Location").Range ("A1") = Sheets ("SourceMap").Range ("C42")
...

This will work fine until someone wants or needs to update the source
document and all of these codings might be lost. I was curious to know if I
can populate a range of cells (the row and column headings) using a named
range instead of cell references ... e.g.:

Sheets ("Specific Location").Range ("A1:A3") = Range ("No. 1_RowHeadings")

I've tried the coding above but it didn't work so obviously I'm not doing
something properly or maybe it just can't be done.

Thanks.



All times are GMT +1. The time now is 06:03 AM.

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