Is Not Null Doesn't work in my query

D

Denise

In my table the field is a text field. Training 01, Training 02, to Training
06

In my form the field is a combo box.

When I created the report, the Training 06 field is blank.

How do I not have this field show up in my report if it is blank.

Thanks.
 
J

Jeff Boyce

Denise

Are you certain that "blank" = Null? It could also = "" (a zero-length
string) or even multiple spaces (i.e., "blanks")?

Regards

Jeff Boyce
Microsoft Access MVP

--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.

Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.

You can thank the FTC of the USA for making this disclaimer
possible/necessary.
 
D

Denise

Hi Jeff,

Would you suggest that I set the fields up differently in the table?

The "type of training topics" are listed in a separate table.

The table that I am using includes the informationn for that day's training.

Training Topics: Emergency Evacuation, CPR, First Aid, Digsafe, etc.

I have six fields called Training Topic 01, Training Topic 02, etc.

What should I do so my query will work?

Thanks for your help.

Denise
 
D

Douglas J. Steele

What you've got is called a repeating group, and it's definitely not
recommended for relational databases. What happens if you need a seventh
training topic?

You should have two tables: the first being all the other fields currently
in the table, and the second being a related table with one row for each
topic. If an individual wants only one topic, there will be one row in the
second table, if the individual wants 10 topics, there will be ten rows.
 
D

Denise

Doug,

I do have a table that lists all the types of training.

In another table is here I have a field for Training 01, Training 02, etc.

What should the field be in the second table if I might need to have more
than one type of training?

Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top