Hello
I am looking for some help to achieve the following with dynamic data validation lists (see sample attached).
The available column in the requests table should contain a unique list of staff who are available for the specified start and end time and are not currently busy. At present...
Hello
I am looking for some help in creating an Excel VBA solution that will create a rota/schedule allocating staff to service users using an algorithm. I believe there are already existing names for this kind of problem/algorithms but not entirely sure what to refer to it is.
Here is my...
There are lots of great example VBA code on this site: http://www.rondebruin.nl/sendmail.htm
I have recently used this in some of my projects to attach the worksheet and email to recipients which are in a named range on another worksheet: http://www.rondebruin.nl/mail/tips2.htm
Hope those help.
I am trying to achieve the following and wondered if it is possible.
I have a spreadsheet that contains monthly data on different worksheets with the worksheet name as the monthname "Jan", "Feb", "Mar" etc. Each of these worksheets has the same structure but different number of rows due to...
I think I've managed to answer my own question using the following formula, replacing the cells in column E:
=IF(SUMPRODUCT(--($G$2:$G$7=A2),--($H$2:$H$7<=D2)*($H$2:$H$7>=B2))=1,SUMPRODUCT(--($G$2:$G$7=A2),--($H$2:$H$7<=D2)*($H$2:$H$7>=B2),$I$2:$I$7),NA())
The formula returns...
Hello
I came across a situation today where I need to perform some sort of a lookup based on an ID value and between a date range. I have read some of the suggestions in the recent vlookup article and believe I need to use a vlookup combined with a sumproduct formula, though I haven't managed...