DustDevil1980
Programmer
I have a table that contains a number of nulls. It is created from a number of select queries and a make table query and New fields are frequently added to it. I need a way to scan this table to add a '0' for each field that is 'Null'. The only solution I have been able to come up with is:
iif([field1] Is Null, 0,)
the problem with this is, someone would have to update the query every time a new field was added.
iif([field1] Is Null, 0,)
the problem with this is, someone would have to update the query every time a new field was added.