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!
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)