Hi all,
I've searched the forum for similair instances. I found some, but they don't include MULTIPLE conditions. Whatever I'm doing is not working and sends a 'Value?' error message.
I have a large database of origin/destinations. There may be as many as 10 different 'rates' for each origin/destination combo and I want to find the smallest value for each. Below is just a tiny example of the table.
Essentially I'm creating a "grid" to help me filter rapidly. The grid for the example would look something like below. I was trying to create an IF statment that I could drag across all the cells MIN(IF(Origin=$A$2 AND Destination = B1,))). That way I could drag it across, say, 20 different desinations for the same origin.
<tbody>
</tbody><colgroup><col><col><col></colgroup>
<tbody>
</tbody><colgroup><col><col><col><col></colgroup>
I've searched the forum for similair instances. I found some, but they don't include MULTIPLE conditions. Whatever I'm doing is not working and sends a 'Value?' error message.
I have a large database of origin/destinations. There may be as many as 10 different 'rates' for each origin/destination combo and I want to find the smallest value for each. Below is just a tiny example of the table.
Essentially I'm creating a "grid" to help me filter rapidly. The grid for the example would look something like below. I was trying to create an IF statment that I could drag across all the cells MIN(IF(Origin=$A$2 AND Destination = B1,))). That way I could drag it across, say, 20 different desinations for the same origin.
Fargo | Grand Forks | |
Minneapolis | x | x |
<tbody>
</tbody><colgroup><col><col><col></colgroup>
Origin | Destination | Carrier | Rate |
Minneapolis | Fargo | A | 0.01 |
Minneapolis | Grand Forks | B | 0.015 |
Minneapolis | Grand Forks | C | 0.012 |
<tbody>
</tbody><colgroup><col><col><col><col></colgroup>