R
RSteph
If I have a text field that holds a user-entered money value. It has a
Validation Rule that the field cannot equal to zero (<> 0). And it is
formatted for Currency.
If I want to then blank out this field (with a clear button), how would I go
about doing this?
I've tried using:
Me!AmountPaid = Null
Me!AmountPaid = ""
Me!AmountPaid.Value = Null
Me!AmountPaid.Text = Null
Me!AmountPaid.Value = ""
Me!AmountPaid.Text = ""
I can't get any of them to clear out the field for me... Any help would be
greatly appreciated.
Validation Rule that the field cannot equal to zero (<> 0). And it is
formatted for Currency.
If I want to then blank out this field (with a clear button), how would I go
about doing this?
I've tried using:
Me!AmountPaid = Null
Me!AmountPaid = ""
Me!AmountPaid.Value = Null
Me!AmountPaid.Text = Null
Me!AmountPaid.Value = ""
Me!AmountPaid.Text = ""
I can't get any of them to clear out the field for me... Any help would be
greatly appreciated.