
Originally Posted by
Morrigan
Solver has 3 options for finding solution for target cell: maximum, minimum, and value is. 2 separate problems means 2 target cells(TargetCell1 and TargetCell2). You can create a new target cell(TargetCell3) and do the following:
Now if TargetCell1 and TargetCell2 are to be "maximum":
TargetCell3 = TargetCell1 + TargetCell2, set TargetCell3 to find the maximum
If TargetCell1 is to be maximum and TargetCell2 is to be "minimum":
TargetCell3 = TargetCell1 - TargetCell2, set TargetCell3 to find the maximum
If TargetCell1 is to be maximum and TargetCell2 is to be "value is":
TargetCell3 = TargetCell1 - TargetCell2, set TargetCell3 to find the maximum
You can figure out the other combinations.
Hope it helps.
Bookmarks