I noticed that OpenSolver and Solver tend to give different solutions. For example, in the example file provided by this website, OpenSolver gives an answer of X=0 and Y=60, whereas Solver's is X=10 and Y=45. Any idea why is this so? Which one should I trust?
(edit) The file is essentially modeling the problem below:
Maximize: 30X+20Y
Subject to:
5X+2Y <= 140
3X+2Y <= 120
X,Y >= 0
