The most important point here is that forward stepwise selection doesn't work well at all. See this page, among many others on this site, for why this is a poor strategy. In some circumstances backward stepwise could be considered, but even then the coefficient estimates will be biased and p-values will be unreliable.
In any event, the step()
function uses the AIC to compare among models. The default model fitting method for lmer()
is REML, which cannot be used for comparisons among mixed models with different fixed effects, as explained here and here. So I'm somewhat surprised that you even got results for a "backward reduced fixed-effect table" and it probably shouldn't be trusted.
In this case, however, this problem with step
might have saved you from the potentially serious statistical problems that would come from relying on forward stepwise selection.