Hi Everyone,
I'm trying to Automate an excel which is using Solver for optimization. In Alteryx, I'm using the 'Optimization tool' for this.
So I'm able to complete the first step which is for input O' of the Optimization tool.
I've figured out 'variable', 'coefficient', and 'type' for input 'O'
Now the second step is constraints. in Excel, it was like following
| variable | Column 1 | dir | Column 2 |
| A | 0 | <= | 1 |
| B | 0 | <= | 2 |
| C | 0 | <= | 5 |
| D | 0 | <= | 7 |
| E | 0 | <= | 3 |
Column 1 is the profit column which I'm trying to maximize but the profit for each variable should not be greater than column 2 values.
How can I put this constraint?
And do I need to use input A or input B for the constraints?
Can someone please help