Here's a thought: Rearrange the regression equation.
y-a = b*x1+c*x2+...
This suggests that you can create a new formula data column that subtracts off your desired intercept a from the response variable y. Then run fit model on the new column using the "No Intercept" option (effectively setting the intercept to zero). You can re-add the desired intercept to the resulting prediction expression.