I have two tables:
Table 1: Formulas
FormulaId Formula Text 1 [Qty] * [Rect] 2 [Qty] * [Al] 3 [Mt] * [Cat]
Did you try CROSS APPLY:
select * from context cross apply formulas order by contextid
See SQL Fiddle With Demo