@AnnetteM on the database side, make the field required. That will throw an error when user tries to save the Form without any value in the field. This will also add asterisk in the DataCard to let user know it is a required field.

Alternatively, on the app side, you can unlock the DataCard,

and then, change the Update property of the DataCard to:
Coalesce(Value(DataCardValue.Text),0)
So, when the form is submitted, it will enter 0 in the field if nothing was entered.