+ Reply to Thread
Results 1 to 7 of 7

Scenario Analysis... simple

Hybrid View

Guest Scenario Analysis... simple 04-04-2005, 01:06 PM
Guest RE: Scenario Analysis...... 04-04-2005, 02:06 PM
Guest RE: Scenario Analysis...... 04-04-2005, 02:06 PM
Guest RE: Scenario Analysis...... 04-04-2005, 02:06 PM
Guest Re: Scenario Analysis...... 04-04-2005, 03:06 PM
Guest Re: Scenario Analysis...... 04-04-2005, 03:06 PM
Guest Re: Scenario Analysis...... 04-04-2005, 04:06 PM
  1. #1
    Darin Kramer
    Guest

    Scenario Analysis... simple

    Howdie,

    I have 12 total scores.

    Each score is an A, B, C or D
    (say in a1,b1,c1,d1)

    I have a formulae which calculates Percentages of each, combines them,
    and then gives an overall result (say in cell E1)

    I want to see effects of scoring 12 A, and zero B,C,D and then 11A,
    1B,zero C's etc

    ANy ideas?

    Thanks

    D



    *** Sent via Developersdex http://www.developersdex.com ***

  2. #2
    Jim Thomlinson
    Guest

    RE: Scenario Analysis... simple

    Are you sure you want to do this. There are about 20,000 permiutations and
    combinations of 12 scores in 4 categories? Unless I have missunderstood your
    question...

    "Darin Kramer" wrote:

    > Howdie,
    >
    > I have 12 total scores.
    >
    > Each score is an A, B, C or D
    > (say in a1,b1,c1,d1)
    >
    > I have a formulae which calculates Percentages of each, combines them,
    > and then gives an overall result (say in cell E1)
    >
    > I want to see effects of scoring 12 A, and zero B,C,D and then 11A,
    > 1B,zero C's etc
    >
    > ANy ideas?
    >
    > Thanks
    >
    > D
    >
    >
    >
    > *** Sent via Developersdex http://www.developersdex.com ***
    >


  3. #3
    Jim Thomlinson
    Guest

    RE: Scenario Analysis... simple

    Sorry I misread your post... The combinations are far less than that. I'll
    look at it again...

    "Jim Thomlinson" wrote:

    > Are you sure you want to do this. There are about 20,000 permiutations and
    > combinations of 12 scores in 4 categories? Unless I have missunderstood your
    > question...
    >
    > "Darin Kramer" wrote:
    >
    > > Howdie,
    > >
    > > I have 12 total scores.
    > >
    > > Each score is an A, B, C or D
    > > (say in a1,b1,c1,d1)
    > >
    > > I have a formulae which calculates Percentages of each, combines them,
    > > and then gives an overall result (say in cell E1)
    > >
    > > I want to see effects of scoring 12 A, and zero B,C,D and then 11A,
    > > 1B,zero C's etc
    > >
    > > ANy ideas?
    > >
    > > Thanks
    > >
    > > D
    > >
    > >
    > >
    > > *** Sent via Developersdex http://www.developersdex.com ***
    > >


  4. #4
    Jim Thomlinson
    Guest

    RE: Scenario Analysis... simple

    You are still over 2,000 combinations. I can not imagine that this is what
    you wanted...

    "Jim Thomlinson" wrote:

    > Sorry I misread your post... The combinations are far less than that. I'll
    > look at it again...
    >
    > "Jim Thomlinson" wrote:
    >
    > > Are you sure you want to do this. There are about 20,000 permiutations and
    > > combinations of 12 scores in 4 categories? Unless I have missunderstood your
    > > question...
    > >
    > > "Darin Kramer" wrote:
    > >
    > > > Howdie,
    > > >
    > > > I have 12 total scores.
    > > >
    > > > Each score is an A, B, C or D
    > > > (say in a1,b1,c1,d1)
    > > >
    > > > I have a formulae which calculates Percentages of each, combines them,
    > > > and then gives an overall result (say in cell E1)
    > > >
    > > > I want to see effects of scoring 12 A, and zero B,C,D and then 11A,
    > > > 1B,zero C's etc
    > > >
    > > > ANy ideas?
    > > >
    > > > Thanks
    > > >
    > > > D
    > > >
    > > >
    > > >
    > > > *** Sent via Developersdex http://www.developersdex.com ***
    > > >


  5. #5
    Tom Ogilvy
    Guest

    Re: Scenario Analysis... simple

    Sub DD()
    i = 0
    For j = 0 To 12
    For k = 0 To 12
    For l = 0 To 12
    For m = 0 To 12
    If j + k + l + m = 12 Then
    i = i + 1
    Cells(i, 1) = j
    Cells(i, 2) = k
    Cells(i, 3) = l
    Cells(i, 4) = m
    End If
    Next m: Next l: Next k: Next j
    End Sub

    gives me 455 combinations.

    --
    Regards,
    Tom Ogilvy

    "Darin Kramer" <darin_kramer@hotmail.com> wrote in message
    news:%23x7sQXTOFHA.1884@TK2MSFTNGP15.phx.gbl...
    > Howdie,
    >
    > I have 12 total scores.
    >
    > Each score is an A, B, C or D
    > (say in a1,b1,c1,d1)
    >
    > I have a formulae which calculates Percentages of each, combines them,
    > and then gives an overall result (say in cell E1)
    >
    > I want to see effects of scoring 12 A, and zero B,C,D and then 11A,
    > 1B,zero C's etc
    >
    > ANy ideas?
    >
    > Thanks
    >
    > D
    >
    >
    >
    > *** Sent via Developersdex http://www.developersdex.com ***




  6. #6
    Darin Kramer
    Guest

    Re: Scenario Analysis... simple



    Fantastic Tom.

    As always very impressive.

    Thanks

    *** Sent via Developersdex http://www.developersdex.com ***

  7. #7
    Jim Thomlinson
    Guest

    Re: Scenario Analysis... simple

    My math skills are just way off... I am going to chaulk this up to a monday
    morning thing... I used to be Ok at this kind of thing... Good job Tom

    "Tom Ogilvy" wrote:

    > Sub DD()
    > i = 0
    > For j = 0 To 12
    > For k = 0 To 12
    > For l = 0 To 12
    > For m = 0 To 12
    > If j + k + l + m = 12 Then
    > i = i + 1
    > Cells(i, 1) = j
    > Cells(i, 2) = k
    > Cells(i, 3) = l
    > Cells(i, 4) = m
    > End If
    > Next m: Next l: Next k: Next j
    > End Sub
    >
    > gives me 455 combinations.
    >
    > --
    > Regards,
    > Tom Ogilvy
    >
    > "Darin Kramer" <darin_kramer@hotmail.com> wrote in message
    > news:%23x7sQXTOFHA.1884@TK2MSFTNGP15.phx.gbl...
    > > Howdie,
    > >
    > > I have 12 total scores.
    > >
    > > Each score is an A, B, C or D
    > > (say in a1,b1,c1,d1)
    > >
    > > I have a formulae which calculates Percentages of each, combines them,
    > > and then gives an overall result (say in cell E1)
    > >
    > > I want to see effects of scoring 12 A, and zero B,C,D and then 11A,
    > > 1B,zero C's etc
    > >
    > > ANy ideas?
    > >
    > > Thanks
    > >
    > > D
    > >
    > >
    > >
    > > *** Sent via Developersdex http://www.developersdex.com ***

    >
    >
    >


+ 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