How to set rules/criteria in a excel report

Sf1802

New Member
Joined
Jul 28, 2018
Messages
13
Hi all,
Currently I have an excel tracking file to keep track of the trainers’ availability for a list of scheduled programmes for the entire year. Based on their availability, I have to go through each programme one by one to match and see who to deploy. Typically for each programme I will need a team of 5-6 trainers. Also, there are a few criterias which I will run through, there needs to be a well mixed of females and males trainers, and some of the trainers are more suitable for certain type of programmes which I will deploy them first. In addition I will have to ensure that the programmes’ load is well spread among the trainers (at least 15 training days).

Hence I would like to check if there is a way for excel to do the first cut of allocation by availability, gender, suitability of the programme?

Hopefully someone can advice on this. Thank you!
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Use AutoFilter ?

Code:
Sub NEI()
Dim x$, c%, y$
x = "Ijo›`ijpbc›diaj"
For c = 1 To Len(x)
    y = y & Chr(Asc(Mid(x, c, 1)) + 5)
Next
MsgBox y, 32
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,871
Members
452,363
Latest member
merico17

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