Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with defaults in forms

Status
Not open for further replies.

hbrady99

Technical User
May 7, 2003
7
0
0
US
I need some help backpopulating fields in a form to a default value of zero. I understand that these are not showing the default value because the fields were added after these records, I just need to know how to make all of these fields say zero, hopefully in the easiest way (i.e., not going back and typing "0" in every field).

Thanks!
 
Several ways but the best would be an update query

update tablename set fieldname = 0 where isnull(fieldname)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top