ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Making 2/more selections using button? (https://www.excelbanter.com/excel-programming/314658-making-2-more-selections-using-button.html)

Michael[_27_]

Making 2/more selections using button?
 
Hi everyone,

I use ComboBox button to make a selection on graphs A, B, C,.....etc.; one at a time

How can I make ComboBox button accept more than one selection; 2 or more?

Thanks,
Mike

Dave Peterson[_3_]

Making 2/more selections using button?
 
How about using a listbox?

You can set that to allow multiple selections.

Michael wrote:

Hi everyone,

I use ComboBox button to make a selection on graphs A, B, C,.....etc.; one at a time

How can I make ComboBox button accept more than one selection; 2 or more?

Thanks,
Mike


--

Dave Peterson


Michael Sultan

Making 2/more selections using button?
 




*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Michael[_27_]

Making 2/more selections using button?
 
Dave Peterson wrote in message ...
How about using a listbox?

You can set that to allow multiple selections.

Michael wrote:

Hi everyone,

I use ComboBox button to make a selection on graphs A, B, C,.....etc.; one at a time

How can I make ComboBox button accept more than one selection; 2 or more?

Thanks,
Mike


Ya, I know what do you mean. However, I have my chart on one sheet
while the table on a 2nd sheet! I want to be able to do it on the
chart sheet without going back to the table sheet.

Is this doable?

Mike

Dave Peterson[_3_]

Making 2/more selections using button?
 
Without understanding what you're doing <bg...

If you could do it using a combobox (one choice), I would think a listbox would
be possible.

How did you populate the combobox?

What kind of combobox did you use (from the forms toolbar or from the control
toolbox toolbar)?

If you used a linked cell with your combobox, you'll need a little code for the
listbox. And depending on the type of listbox you'll use, the code is
different.




Michael wrote:

Dave Peterson wrote in message ...
How about using a listbox?

You can set that to allow multiple selections.

Michael wrote:

Hi everyone,

I use ComboBox button to make a selection on graphs A, B, C,.....etc.; one at a time

How can I make ComboBox button accept more than one selection; 2 or more?

Thanks,
Mike


Ya, I know what do you mean. However, I have my chart on one sheet
while the table on a 2nd sheet! I want to be able to do it on the
chart sheet without going back to the table sheet.

Is this doable?

Mike


--

Dave Peterson


Michael Sultan

Making 2/more selections using button?
 
Dave,

If you have an email I can send you the file. I have used cell link I
beleive.



Thanks,
Mike



*** Sent via Developersdex
http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Dave Peterson[_3_]

Making 2/more selections using button?
 
If you post your details in the newsgroup, you'll get an answer quicker and
it'll be reviewed by lots of people.

Michael Sultan wrote:

Dave,

If you have an email I can send you the file. I have used cell link I
beleive.



Thanks,
Mike

*** Sent via Developersdex
http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!


--

Dave Peterson


Michael[_27_]

Making 2/more selections using button?
 
Dave Peterson wrote in message ...
How about using a listbox?

You can set that to allow multiple selections.

Michael wrote:

Hi everyone,

I use ComboBox button to make a selection on graphs A, B, C,.....etc.; one at a time

How can I make ComboBox button accept more than one selection; 2 or more?

Thanks,
Mike



Hi again,

Here is how I have the table on one sheet:

No InModel Resp Depl AgVr Leth
1 1 0.743 0.507 0.589 0.502
2 1 0.713 0.507 0.594 0.543
3 1 0.635 0.507 0.594 0.452
4 1 0.744 0.521 0.589 0.593
5 1 0.609 0.507 0.594 0.643
6 1 0.660 0.704 0.669 0.814
7 1 0.715 0.528 0.594 0.543
8
9
10
11
12
13
14
15
16
17
18
19
20

On a 2nd sheet, I have the chart where as many as 20 solutions could
be graphed. Now, on the 2nd sheet, I want to find a way to scroll
through solutions 1-by-1 or even show 2 ro more at a time WITHOUT the
need of visiting of the table sheet at all?

How can I do so?

Regards,
Mike

Dave Peterson[_3_]

Making 2/more selections using button?
 
First, I don't do much with charts. You may want to post specific Charting
questions to the .charting newsgroup.

But I put used controls from the control toolbox toolbar and placed them on
Sheet1.

I used a listbox and a commandbutton.

This is the code that I used to find out what was selected in that listbox.

Option Explicit
Private Sub CommandButton1_Click()
Dim iCtr As Long
Dim myStr As String
Dim cCtr As Long

With Me.ListBox1
For iCtr = 0 To .ListCount - 1
myStr = ""
If .Selected(iCtr) Then
'do your graphing
'just for testing
For cCtr = 0 To .ColumnCount - 1
myStr = myStr & ";" & .List(iCtr, cCtr)
Next cCtr
If myStr < "" Then
myStr = Mid(myStr, 2)
MsgBox myStr
End If
Else
'do nothing
End If
Next iCtr
End With
End Sub

Private Sub Worksheet_Activate()

Dim myRng As Range
With Worksheets("sheet1")
Set myRng = .Range("B2:F" & .Cells(.Rows.Count, "B").End(xlUp).Row)
End With


With Me.ListBox1
.MultiSelect = fmMultiSelectMulti
.ColumnHeads = True
.ColumnCount = 5
.ListFillRange = myRng.Address(external:=True)
End With

End Sub

I chose to use worksheet_activate to populate the listbox. This means that you
have to leave the sheet and return to it to have it updated. You may want to
use a different method (workbook_open???).

Good luck on the .charting questions.



Michael wrote:

Dave Peterson wrote in message ...
How about using a listbox?

You can set that to allow multiple selections.

Michael wrote:

Hi everyone,

I use ComboBox button to make a selection on graphs A, B, C,.....etc.; one at a time

How can I make ComboBox button accept more than one selection; 2 or more?

Thanks,
Mike


Hi again,

Here is how I have the table on one sheet:

No InModel Resp Depl AgVr Leth
1 1 0.743 0.507 0.589 0.502
2 1 0.713 0.507 0.594 0.543
3 1 0.635 0.507 0.594 0.452
4 1 0.744 0.521 0.589 0.593
5 1 0.609 0.507 0.594 0.643
6 1 0.660 0.704 0.669 0.814
7 1 0.715 0.528 0.594 0.543
8
9
10
11
12
13
14
15
16
17
18
19
20

On a 2nd sheet, I have the chart where as many as 20 solutions could
be graphed. Now, on the 2nd sheet, I want to find a way to scroll
through solutions 1-by-1 or even show 2 ro more at a time WITHOUT the
need of visiting of the table sheet at all?

How can I do so?

Regards,
Mike


--

Dave Peterson



All times are GMT +1. The time now is 02:30 AM.

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