As another example, I entered the following formula to find the molecular weight:
=VLOOKUP($B$4,prop_table,2)
The VLOOKUP function first looks into the first column of the table named "prop_table". When the component name entered in cell B4 (e.g. "WATER" or "1-BUTENE"

is found in the table, the function returns the value in column 2 of that table. Column 2 contains the corresponding molecular weights.
Since column 3 contains the freeze points, following formula can be used to find this property:
=VLOOKUP($B$4,prop_table,3)
However, the function can be made more complicated, e.g. to convert the units from Kelvin to °C, or to return "Unknown" in case the database doesn't contain the specific property for the specified component. It would then look as follows:
=IF(VLOOKUP($B$4,prop_table,3)=0,"Unknown",VLOOKUP($B$4,prop_table,3)-273.15)
Good luck!