Help

Two tables. Finding the primary field related to the lowest amount within a category

862 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Chris_Finck1
4 - Data Explorer
4 - Data Explorer

Hi there,

So I am getting proposals from companies for tasks that are in another table. I am able to return the lowest price using the rollup Min(Values) but on another column I want to relate that lowest value to the sub that provided the lowest price. Any ideas?

2 Replies 2
Chris_Finck1
4 - Data Explorer
4 - Data Explorer

Hi everyone, I solved it incase you have this same problem.

On table 1, I did a rollup of all the proposals received. Then I created a field column finding the min(values) of those rolled up proposals. I then went to Table 2 and created a lookup column of the min(values) from table 1. I then created a formula field to if(price=lowestprice,company,blank()). This returned the companies name which I then was able to lookup on table 1.

Thanks!

Glad that you were able to solve the problem! For future reference, the final item in an IF function automatically defaults to BLANK() (or its equivalent) if omitted, so the following would also work:

IF(price=lowestprice, company)