I have project numbers with a Service and sometimes the Service is missing. Example
Project Service
080345 ASN
If I use Is not null it still returns a few records with an empty Service even though technically its not null there is nothing I can see anyway. Someone got in the box and then deleted it ???
So I need to find only records if the Service is Empty or Blank. Since Is Not Null does not seem to work in all cases.
this code gets most of them but it I look in the table there are several that are empty, blank or whatever they need something in them. I need to know or other things don't work right.
TIA
DougP
Project Service
080345 ASN
If I use Is not null it still returns a few records with an empty Service even though technically its not null there is nothing I can see anyway. Someone got in the box and then deleted it ???
So I need to find only records if the Service is Empty or Blank. Since Is Not Null does not seem to work in all cases.
this code gets most of them but it I look in the table there are several that are empty, blank or whatever they need something in them. I need to know or other things don't work right.
Code:
UPDATE [TimeSheet Details] SET [TimeSheet Details].[Number] = "1"
WHERE ((([TimeSheet Details].Number) Is Null) AND (([TimeSheet Details].[Project Number]) Is Not Null));
TIA
DougP