Conditional Indexing

DeepanshuS

New Member
Joined
Nov 22, 2017
Messages
2
I have tried to post this question earlier, but it didnot show up.

My problem is to find a relative straight forward way to determine what methods are valid for a given set of process required. For example,
Process 1Process 2Process 3Process 4Process 5Process 6
Method A000110
Method B110010
Method C110110
Method D111100
Method E100100
Method F101000
Method G001001

<tbody>
</tbody>


Method A is applicable for Process 4 and Process 5 alone.

If I had to select a combination of different Processes, (Say Process 2, Process3), How will I be able to list different methods that are common for both the process.

Any help will be much appreciated.


EDIT: I wanted to make a check box selector where I can list the Processes to be carried out and the result will be the common methods that are available for the selected processes.
 
Last edited by a moderator:

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Instead of check box add two combobox in your user form


Private Sub ComboBox1_Change()
With ComboBox2
If UserForm1.ComboBox1.Value = "Process 1" Then
For k = 2 To 8
If Sheet1.Range("B" & k).Value = 1 Then
.AddItem "" & Sheet1.Range("A" & k).Value & ""
End If
Next
End If
End With
End Sub


Private Sub UserForm_Initialize()
With ComboBox1
.AddItem "Process 1"
.AddItem "Process 2"
.AddItem "Process 3"
.AddItem "Process 4"
.AddItem "Process 5"
.AddItem "Process 6"
End With




End Sub
 
Upvote 0

Forum statistics

Threads
1,214,915
Messages
6,122,214
Members
449,074
Latest member
cancansova

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