ok
also Can I have 2 calculations run on the same field AfterUpdate: see code below
Private Sub TOTSITES_AfterUpdate()
Me!PPS = Nz(Me!Price, 0) / Nz(Me!TOTSITES, 0)
End Sub
I also need this:
Private Sub TOTSITES_AfterUpdate()
Me!GPS = Nz(Me!Gross, 0) / Nz(Me!TOTSITES, 0)
End Sub
Anotherwords can you do 2 caluclations in the same AfterUpdate