Cross-tab Query

J

Jade5

Hello:
I have a cross-tab query (left outer join) that is the source for a list
box. There is a field that appears with these characters as the field name
<> What does this mean and how can I get rid of it?
Thanks,
J
 
P

Pieter Wijnen

It means your Pivot Column contains NULL values
you can either exlcude them by using a WHERE criteria (WHERE MyField IS Not
Null)
or by casting using Nz (Nz(MyField,'No Value')

HTH

Pieter
 
J

Jade5

Thanks Pieter.
J.

Pieter Wijnen said:
It means your Pivot Column contains NULL values
you can either exlcude them by using a WHERE criteria (WHERE MyField IS Not
Null)
or by casting using Nz (Nz(MyField,'No Value')

HTH

Pieter
 

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