1
Hello!
I’m doing a cost chart for my company and I’m needing to do a search on a value chart, but the only way I currently know how to do it is through various chained Ses, which will take a lot of work, time and will generate an incredible maintenance difficulty or when it is to increase the table of values.
In a simpler way, I have the following:
Auxiliary Tables
Cost Table (Relating data)
The columns TIRE, DRAWING AND WIDTH are made "in the hand", according to what makes sense in the logic of the company, but the columns PERIMETER and WEIGHT/KILO must be generated automatically.
1) With few Ses I can make a formula for the PERIMETER column, the problem is that if the SIZE column of the Auxiliary Tables gets too big, it will be impossible to do all this only with Ses.
The logic here is simple: Return the PERIMETER value to a certain TIRE value. The SIZE and TIRE columns are the keys.
2) It is used for the WEIGHT/KILO column. In practice, there are several widths (n>10) and several drawings (n>15).
The logic here is a little more advanced case, in relation to "1": Return a WEIGHT/KILO value to a given DRAWING AND (logical operator) WIDTH value. WIDTH is the key for the horizontal header of the auxiliary table and DRAWING is the key for the vertical header of the same.
I know how to do it in Java, but I don’t know "write it in excel".
Grateful!