justphilip2003
Registered User.
- Local time
- Today, 05:40
- Joined
- Mar 3, 2013
- Messages
- 30
Is it possible to place a numeric field on a form that is not associated with any Table? It would be used to calculate a value that would be written to a Table field. I am trying to convert field InVal that is regular Ounces or Grams and convert to Troy ounces via buttons event criteria.
Private Sub CmdCvrtGm_Click()
TroyOz = [InVal] * 0.0322
End Sub
Private Sub CmdCvrtOz_Click()
TroyOz = [InVal] * 0.9115
End Sub
TIA JP :banghead:
Private Sub CmdCvrtGm_Click()
TroyOz = [InVal] * 0.0322
End Sub
Private Sub CmdCvrtOz_Click()
TroyOz = [InVal] * 0.9115
End Sub
TIA JP :banghead:
Last edited: