Sure. First you've to list out the three options someplace, for instance, Cells F1, F2 & F3, perhaps indicating that you want to choose the package named at Cell F1 (whatever it is) if the sum derived out of the previous steps (total of Ys) is more than 6, the package at Cell F2 if it is between 3 to 5, and package at Cell F3 if it's less than 3.
Now, at any place (preferably in the cell below where the total of Ys appears e.g. B6), enter this formula: '=IF(B5>5,F1,IF(B5>2,F2,F3))', where B5 stands for the cell containing the sum of Ys. This should automate the choosing of the options.
Thinking about it, perhaps you can even dispense with the first step above of listing out the options/packaged solutions, and instead put the options within the formula itself, like this: '=IF(B5>5,"Option C",IF(B5>2,"Option B","Option A")), of course replacing the options within quotes with the actual description you want to put.
Happy 'Excel'ling!