You can use the IIF statement. Try something like...
= IIF([AttMins] = 0, 0, [StdMins]/[AttMins])
The IIF statement will evaluate the AttMins. If it is zero, then the statement will return zero, as you requested. Otherwise, it will return the calculation.
Hope it helps.
Gary
gwinn7