+ Reply to Thread
Results 1 to 9 of 9

Engineer Project Allocation App

  1. #1
    Registered User
    Join Date
    06-15-2020
    Location
    UK
    MS-Off Ver
    365 v1902
    Posts
    6

    Question Engineer Project Allocation App

    Hi I am new here, and I am writing an Excel workbook to track the project allocation per engineer.
    All is going well, except I have run into a problem...

    I assign role/skill to each of my engineers (Network, Server, VMware etc)

    I am trying to total the use per skill and demonstrate in a table as I can quite easily do per engineer.

    How to I run a query to identify the engineers assigned to a skill (eg Network) and then run a query on the Engineer allocation table to populate a usage by skill table?

    Unfortunately, I am unable to use any VBA in this workbook.. or it would be finished weeks ago!

    TIA
    Last edited by MonkeyBrunt; 06-15-2020 at 07:27 PM.

  2. #2
    Forum Expert
    Join Date
    02-10-2019
    Location
    Georgia, USA
    MS-Off Ver
    Office 365
    Posts
    3,305

    Re: Engineer Project Allocation App

    It's probably best if you attached a sample workbook. Please follow the instructions iin the yellow banner at the top of this page.

  3. #3
    Registered User
    Join Date
    06-15-2020
    Location
    UK
    MS-Off Ver
    365 v1902
    Posts
    6

    Re: Engineer Project Allocation App

    Thanks, I have created a new post with an attachment as requested
    #post5350429 - Not permitted to post URLs yet

  4. #4
    Valued Forum Contributor loginjmor's Avatar
    Join Date
    01-31-2013
    Location
    Cedar Rapids, Iowa
    MS-Off Ver
    Excel 2013
    Posts
    1,073

    Re: Engineer Project Allocation App

    Hello -

    I pulled your spreadsheet from your duplicate post. Some of your engineers' skills have multiple categories. For example, on the Skills Tab, Storage Engineer 14 has both Backup and Storage categories. How do you want that handled at the bottom of your Staff Tab? Do I count Engineer 14's time twice? Both for Storage and for Backup?
    ____________________________________________
    If this has solved your problem, please edit the thread title to add the word [SOLVED] at the beginning. You can do this by
    -Go to the top of the first post
    -Select Thread Tools
    -Select Mark thread as Solved

    If I have been particularly helpful, please "bump" my reputation by pressing the small star in the lower left corner of my post.

  5. #5
    Registered User
    Join Date
    06-15-2020
    Location
    UK
    MS-Off Ver
    365 v1902
    Posts
    6

    Re: Engineer Project Allocation App

    Quote Originally Posted by loginjmor View Post
    Hello -

    I pulled your spreadsheet from your duplicate post. Some of your engineers' skills have multiple categories. For example, on the Skills Tab, Storage Engineer 14 has both Backup and Storage categories. How do you want that handled at the bottom of your Staff Tab? Do I count Engineer 14's time twice? Both for Storage and for Backup?
    Hi
    Thanks for looking at this. The engineers in multiple categories is done deliberately. Each team is multi skilled and I need to demonstrate not only the engineer's availability but the skill's availability too.
    This is a tool to demonstrate where we are short of both engineers or/and skills.

    In answer to the question "Do I count Engineer 14's time twice? Both for Storage and for Backup?" - yes

  6. #6
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2509 (Windows 11 Home 24H2 64-bit)
    Posts
    92,380

    Re: Engineer Project Allocation App

    Please post the sample sheet to this thread.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    NB:
    as a Moderator, I never accept friendship requests.
    Forum Rules (updated August 2023): please read them here.

  7. #7
    Registered User
    Join Date
    06-15-2020
    Location
    UK
    MS-Off Ver
    365 v1902
    Posts
    6

    Re: Engineer Project Allocation App

    Ad requested sammple file attached here
    Attached Files Attached Files

  8. #8
    Valued Forum Contributor loginjmor's Avatar
    Join Date
    01-31-2013
    Location
    Cedar Rapids, Iowa
    MS-Off Ver
    Excel 2013
    Posts
    1,073

    Re: Engineer Project Allocation App

    Hi -

    OK - so I had to do a couple of things:

    1. On the Skills Matrix tab, I had to add a table that pulls out a unique list of classifications by skill category (Network, Storage, Backup, etc.). I used the classic INDEX/MATCH/COUNTIF array formula that looks like:

    =IFERROR(INDEX(tSkillsMatrix[Engineer],MATCH(0,IF(H$1=tSkillsMatrix[Category],COUNTIF(H$1:H1,tSkillsMatrix[Engineer]),""),0)),"")

    Just google "Extract Unique List with multiple criteria" and you will get several web pages that have very detailed explanations of how this works. Anyway, this is highlighted in peach color on that spreadsheet.

    Then, on the Staff Tab, I copied your table that was listing all of the staff classifications by category and used that structure to instead sum up the days on the Resource Tab according to the list on the Skills Matrix I created. The formula looks like:

    =SUM(SUMIF(CResource[Engineer],'Skills Matrix'!$H$2:$H$9,Resource!H$5:H$12))

    This formula resides in Cell F36, which is the Jun-20 month end reporting column. This is also an array formula. Since you already have array formulas in your spreadsheet, I'm assuming you know what those are. The interesting thing about this formula is since SUMIF only accepts a single criteria, I have to make it an array formula to accept multiple classifications. But what I learned is SUMIF, as an array formula, will still only return the first value in its array. So you have to enclose it in a SUM function to sum up the SUMIF array. So, I learned from this as well.

    Attached is your revised spreadsheet with the above modifications.

    Hope this helps.
    Attached Files Attached Files

  9. #9
    Registered User
    Join Date
    06-15-2020
    Location
    UK
    MS-Off Ver
    365 v1902
    Posts
    6

    Re: Engineer Project Allocation App

    Quote Originally Posted by loginjmor View Post
    Hi -

    OK - so I had to do a couple of things:

    1. On the Skills Matrix tab, I had to add a table that pulls out a unique list of classifications by skill category (Network, Storage, Backup, etc.). I used the classic INDEX/MATCH/COUNTIF array formula that looks like:

    =IFERROR(INDEX(tSkillsMatrix[Engineer],MATCH(0,IF(H$1=tSkillsMatrix[Category],COUNTIF(H$1:H1,tSkillsMatrix[Engineer]),""),0)),"")

    Just google "Extract Unique List with multiple criteria" and you will get several web pages that have very detailed explanations of how this works. Anyway, this is highlighted in peach color on that spreadsheet.

    Then, on the Staff Tab, I copied your table that was listing all of the staff classifications by category and used that structure to instead sum up the days on the Resource Tab according to the list on the Skills Matrix I created. The formula looks like:

    =SUM(SUMIF(CResource[Engineer],'Skills Matrix'!$H$2:$H$9,Resource!H$5:H$12))

    This formula resides in Cell F36, which is the Jun-20 month end reporting column. This is also an array formula. Since you already have array formulas in your spreadsheet, I'm assuming you know what those are. The interesting thing about this formula is since SUMIF only accepts a single criteria, I have to make it an array formula to accept multiple classifications. But what I learned is SUMIF, as an array formula, will still only return the first value in its array. So you have to enclose it in a SUM function to sum up the SUMIF array. So, I learned from this as well.

    Attached is your revised spreadsheet with the above modifications.

    Hope this helps.
    Thanks so much for this, I will check it out today

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Get the start date and end date of project in a range of Project Allocation
    By juan.doe in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 03-19-2018, 09:54 AM
  2. Hour Allocation based on project phases
    By Samgrindrod in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-17-2017, 03:07 PM
  3. Resource allocation Per Project
    By excelhelpexcel in forum Excel General
    Replies: 0
    Last Post: 04-07-2014, 05:14 PM
  4. Excel 2010 - Project Day Allocation, Time Spent Calculation
    By craigj21 in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 08-27-2013, 07:20 AM
  5. Solver for personnel project allocation
    By sunrise85 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-13-2011, 11:20 AM
  6. [SOLVED] Project allocation
    By johntippins@mac.com in forum Excel General
    Replies: 2
    Last Post: 03-21-2005, 07:06 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1