If you want to divide one field by another, assuming that they are both numeric, the syntax is:
=Field1/Field2
Of course, if field2 is 0, then it will crash with a division by zero error, so a better way is:
=Iif(Field2=0,"Div by 0 Error",Field1/Field2)
which just displays an error message rather than crashing.
John