When I'm running a multiple imputation on my data I'm getting an error saying
Code:
estimation sample varies between m=1 and m=2; click here for details
and recommended using nowarning to fix it but I'm not sure what the syntax for it would be. I'm running a loop that generates the following code

Code:
mi estimate, hr:qui stcox i.`predictor' `categorical_variables' `other_variables' i.`this_variable'##i.`predictor' if `this_variable' == `l'
Adding nowarning as follows did nothing and I'm still getting the same error:

Code:
mi estimate, nowarning hr:qui stcox i.`predictor' `categorical_variables' `other_variables' i.`this_variable'##i.`predictor' if `this_variable' == `l'