Consulting

Results 1 to 4 of 4

Thread: Solved: Calculate time

  1. #1
    VBAX Regular
    Joined
    May 2006
    Posts
    67
    Location

    Solved: Calculate time

    I am trying to do the following and I think I may need a function.

    I have a list of people assigned to a task. In some instances some have an assigned percentage and some don't. What I need to do is calculate the assignees that don't have a percentage against assigness that do. Example

    1) AA(50%),BB,CC,DD(25%)

    Expected Result

    1) AA 50%
    2) BB 12.5%
    3) CC 12.5%
    4) DD 25%

    As AA and DD equals 75% the remainding spare equals 25% divided by 2 unassigned people (BB & CC) equals 12.5%

    Thanks

  2. #2
    Site Admin
    Jedi Master
    VBAX Guru Jacob Hilderbrand's Avatar
    Joined
    Jun 2004
    Location
    Roseville, CA
    Posts
    3,712
    Location
    If you have those values in A and B, try something like this.

    Number of blanks:
    COUNTA(A:A)-COUNTA(B:B)

    Remaining percentage:
    1-SUM(B:B)

    Percentage for each blank:
    (1-SUM(B:B))/(COUNTA(A:A)-COUNTA(B:B))

  3. #3
    VBAX Regular
    Joined
    May 2006
    Posts
    67
    Location
    Thanks for the response I used your formulas and they worked a treat.

    Again Thanks

  4. #4
    Site Admin
    Jedi Master
    VBAX Guru Jacob Hilderbrand's Avatar
    Joined
    Jun 2004
    Location
    Roseville, CA
    Posts
    3,712
    Location
    Glad to help

    Take Care

Posting Permissions

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