Replace function in vba

Ben_Entrew

Registered User.
Local time
Today, 13:36
Joined
Dec 3, 2013
Messages
177
Hi all,

how can I check if a table contains blank fields/values.

If there are blank fields I want to replace them with 0.

Can someone help me out here?

Thanks in advance.

Regards,
Ben
 
Is Null in SQL Query will give you the result.
Code:
SELECT * FROM theTable 
WHERE theField IsNull;
 
Hello Paul,

thanks for your reply.

How can I check for all columns, blank values can appear in different month columns.
I need to check every column if a blank value exists.

Regards,
Ben
 
Put a Default value of Zero on the fields that you do not want as Null.

Simon
 

Users who are viewing this thread

Back
Top Bottom