+ Reply to Thread
Results 1 to 6 of 6

table calculating complex capacity with variables

  1. #1
    Registered User
    Join Date
    09-11-2015
    Location
    Luxembourg, Luxembourg
    MS-Off Ver
    2013
    Posts
    2

    table calculating complex capacity with variables

    Hello,
    I am looking for a way to create a table allowing me to calculate my business capacity depending on several variables.
    Namely I want to take into consideration all of the following:
    number of hours per week of the team
    capacity for reviewing text in English
    capacity for reviewing text in German
    capacity for reviewing text in French

    The problem is the some people of the team can review all the 3 languages and some only 2.
    For example with a team of 3 people working 40 h I have a total capacity of 120h.
    Employee A can review English, German and French, but if this person dedicates 20h to English for exemple, their capacity will be the remaining hours on the 2 other languages. Employee B only works with English and French. What I need to do is to calculate how much words I can review in a week for the different languages considering that each person can dedicate not more that 40h in total at work. Or also the other way around, i.e. checking against the employees capacity that I can meet the needs for my week in terms of words reviewed per week.

    Is there a way to create this?
    Thanks a lot for your help
    Eli

  2. #2
    Forum Expert
    Join Date
    09-01-2012
    Location
    Norway
    MS-Off Ver
    Office 365
    Posts
    2,844

    Re: table calculating complex capacity with variables

    If you post a sample workbook describing the problem and the expected output it will be much easier to help you.
    <----- If you were helped by my posts you can say "Thank you" by clicking the star symbol down to the left

    If the problem is solved, finish of the thread by clicking SOLVED under Thread Tools
    I don't wish to leave you with no answer, yet I sometimes miss posts. If you feel I forgot you, remind me with a PM or just bump the thread.

  3. #3
    Registered User
    Join Date
    09-11-2015
    Location
    Luxembourg, Luxembourg
    MS-Off Ver
    2013
    Posts
    2

    Re: table calculating complex capacity with variables

    Hello,
    so basically what I need is more or less this:

    Untitled.png

    And I need to interconnect the three tasks so that if I manually modify the value assigned to one the values the other 2 change automatically without having to calculate them manually.
    The problem is that I might need to change task 1 or 3 (the line outside the table) so I need to put a formula with coefficient in the table for the three tasks. I need to allot the same number as in number of hours to the three activities and :
    task 1 is total n. of h - h spent for tasks 2 and 3
    task 2 is 20% of task 1 + 15% of task 3
    task 3 is total n. of h - h spent for tasks 1 and 2

    Is there a way to calculate capacity that are interconnected like this?

    I hope my explanation is more or less clear
    Thanks
    Eli
    Attached Images Attached Images

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: table calculating complex capacity with variables

    What I need to do is to calculate how much words I can review in a week for the different languages considering that each person can dedicate not more that 40h in total at work.
    Seems to me like a linear programming problem, but I don't understand the inputs and outputs.

    You start each week with a pile of docs in various languages to review, and want to know how to get the most done and what assignments to make? And if that's true, please provide an example; I can't make sense of your pictures.
    Last edited by shg; 09-18-2015 at 12:32 PM.
    Entia non sunt multiplicanda sine necessitate

  5. #5
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP and 2007
    Posts
    15,829

    Re: table calculating complex capacity with variables

    Is there a way to calculate capacity that are interconnected like this?
    I am generally optimistic that such calculations are possible, with enough time, effort, and ingenuity.

    It is not clear to me exactly what you want. In your sample data, Task2's times do not equal the values you suggest it does. It appears to be simply 0.2*task1 and independent of task3.

    It appears to me that, if you are given any two of the task times and the total hours, you can calculate the third time. This part is mostly algebra, as the programming should be simple.

    Reading between the lines, I wonder if your question is really the same as this one: http://www.excelforum.com/excel-form...ml#post4191342 If this is the kind of question you are asking, then my answer is the same -- as long as you keep "inputs" and "outputs" in separate locations in the spreadsheet, it should be a simple if function [=IF(test for unkown toggle,formula to calculate unkown, copy value from input)].

    The main complication that people want with this sort of thing is to insist that the input and output tables be the same table, in which case, one must use VBA to do the processing.

    Does that help, or am I completely misunderstanding?
    Quote Originally Posted by shg
    Mathematics is the native language of the natural world. Just trying to become literate.

  6. #6
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: table calculating complex capacity with variables

    Something like this (using Solver Simplex LP)?

    Row\Col
    A
    B
    C
    D
    E
    F
    1
    English
    French
    German
    2
    Alan
    40
    40
    40
    3
    Barb
    40
    40
    0
    4
    Cain
    0
    40
    40
    5
    6
    Input
    50
    60
    60
    170
    E6: =SUM(B6:D6)
    7
    8
    Alan
    40
    0
    0
    40
    E8 and down: =SUM(B8:D8)
    9
    Barb
    10
    30
    0
    40
    10
    Cain
    0
    30
    10
    40
    11
    50
    60
    10
    120
    B11 and across: =SUM(B8:B10)
    Last edited by shg; 09-18-2015 at 12:47 PM.

+ 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. [SOLVED] Very complex formula dealing with many variables
    By BeachRock in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 10-28-2013, 04:59 PM
  2. I hope to convert a table from values to % of a 40-hour capacity and graph dept totals
    By mstone2112 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-21-2013, 12:53 PM
  3. How to create a complex chart with four variables?
    By ddiego in forum Excel General
    Replies: 0
    Last Post: 06-12-2012, 07:47 PM
  4. RE-submitting of: constructing (complex) variables with worksheet functions
    By broer konijn in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 06-13-2006, 06:36 AM
  5. constructing (complex) variables with worksheet functions
    By broer konijn in forum Excel General
    Replies: 0
    Last Post: 05-16-2006, 05:55 PM
  6. [SOLVED] Pivot Table capacity in 2000 or 2003
    By Martin in forum Excel General
    Replies: 0
    Last Post: 01-16-2006, 08:15 AM

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