+ Reply to Thread
Results 1 to 60 of 60

Dividing by unknown to get a number

  1. #1
    Registered User
    Join Date
    05-16-2005
    Posts
    11

    Dividing by unknown to get a number

    I am trying to determine the amount of people it will take to complete a task. The problem is, I have calculated how big the task will be, but I would like a function to determine how many people are needed.
    For example:

    I know 1 person can move 700 items without risk of injury (so I would like to stay around this number...it's arbitrary). So I would like a function to calculate how many people it will take to move say 5000 items?
    ie 5000/x=700 where x is the number of workers. Does anyone have an idea of an if statement that could do this. Obvisously, if the number is less than 700, I would have a default of 1.

    Thanks in advance.

  2. #2
    Forum Contributor
    Join Date
    06-23-2004
    Location
    Houston, TX
    Posts
    571
    Quote Originally Posted by bundyloco
    I am trying to determine the amount of people it will take to complete a task. The problem is, I have calculated how big the task will be, but I would like a function to determine how many people are needed.
    For example:

    I know 1 person can move 700 items without risk of injury (so I would like to stay around this number...it's arbitrary). So I would like a function to calculate how many people it will take to move say 5000 items?
    ie 5000/x=700 where x is the number of workers. Does anyone have an idea of an if statement that could do this. Obvisously, if the number is less than 700, I would have a default of 1.

    Thanks in advance.
    If you want, you can put "700" (without the quotes or any other number since you said this is arbitrary) in Cell A1 and the total number of items that you would like to move in Cell B1 (in your example, this is 5000).

    In Cell C1, enter this formula : =if((B1/A1)<1,1,B1/A1)

    Another formula would be : =if(B1<A1,1,B1/A1)

    Regards.
    BenjieLop
    Houston, TX

  3. #3
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  4. #4
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  5. #5
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  6. #6
    Registered User
    Join Date
    05-16-2005
    Posts
    11
    Do'h...thanks everyone, I knew I was making this way too difficult!

  7. #7
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  8. #8
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  9. #9
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  10. #10
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  11. #11
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  12. #12
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  13. #13
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  14. #14
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  15. #15
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  16. #16
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  17. #17
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  18. #18
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  19. #19
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  20. #20
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  21. #21
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  22. #22
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  23. #23
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  24. #24
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  25. #25
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  26. #26
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  27. #27
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  28. #28
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  29. #29
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  30. #30
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  31. #31
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  32. #32
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  33. #33
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  34. #34
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  35. #35
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  36. #36
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  37. #37
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  38. #38
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  39. #39
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  40. #40
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  41. #41
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  42. #42
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  43. #43
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  44. #44
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  45. #45
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  46. #46
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  47. #47
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  48. #48
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  49. #49
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  50. #50
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  51. #51
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  52. #52
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  53. #53
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  54. #54
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  55. #55
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  56. #56
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  57. #57
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  58. #58
    R.VENKATARAMAN
    Guest

    Re: Dividing by unknown to get a number

    intrigued by the question
    i thought if
    5000/x=700-by cross multiplication
    then x=5000/700
    it may give fraction 7.142
    appoint 8 people


    bundyloco <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  59. #59
    Ken Wright
    Guest

    Re: Dividing by unknown to get a number

    =ROUNDUP(A1/700,0)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:
    > http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




  60. #60
    Paul B
    Guest

    Re: Dividing by unknown to get a number

    bundyloco, with 5000 in A1, =IF(A1<701,1,A1/700) Am I missing something??

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "bundyloco" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I am trying to determine the amount of people it will take to complete a
    > task. The problem is, I have calculated how big the task will be, but I
    > would like a function to determine how many people are needed.
    > For example:
    >
    > I know 1 person can move 700 items without risk of injury (so I would
    > like to stay around this number...it's arbitrary). So I would like a
    > function to calculate how many people it will take to move say 5000
    > items?
    > ie 5000/x=700 where x is the number of workers. Does anyone have an
    > idea of an if statement that could do this. Obvisously, if the number
    > is less than 700, I would have a default of 1.
    >
    > Thanks in advance.
    >
    >
    > --
    > bundyloco
    > ------------------------------------------------------------------------
    > bundyloco's Profile:

    http://www.excelforum.com/member.php...o&userid=23386
    > View this thread: http://www.excelforum.com/showthread...hreadid=395650
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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