Text "Access"

  • Thread starter Thread starter PeachDuster
  • Start date Start date
P

PeachDuster

I have been stumped on this for a little while and would greatly appriciate
it if someone could help me. I need to sort a text parameter that is a
telephone number but show only the customers who don't have telephone
numbers. I have literly spent a few hours + more trying to figure this out,
if you have an answer or can point me in the right direction it would be
greatly appriciated. Thank you
 
PeachDuster said:
I have been stumped on this for a little while and would greatly
appriciate
it if someone could help me. I need to sort a text parameter that is a
telephone number but show only the customers who don't have telephone
numbers. I have literly spent a few hours + more trying to figure this
out,
if you have an answer or can point me in the right direction it would
be
greatly appriciated. Thank you


I think we need more information:

Are you writing a Query? Using the Query design Grid?

What version of Access?

I'm not sure how "sort" and "don't have" go in the same sentence
together.

Try filtering on "Is Null" and see what that does for you.
 
Hi Clif,

In addition to setting a criteria for Is Null, one may need to include a
criteria for zero lenght strings (ZLS), if these are allowed for the field in
question (ie. "Allow Zero Length" = Yes, in table design view, for the field
in question). You can capture both cases with this criteria:

Criteria: Is Null Or =""

See Access MVP Allen Browne's write up on ZLS:

Problem properties ---> See Fields: Allow Zero Length
http://allenbrowne.com/bug-09.html


Tom Wickerath
Microsoft Access MVP
http://www.accessmvp.com/TWickerath/
http://www.access.qbuilt.com/html/expert_contributors.html
__________________________________________
 
Thanks, Tom. that looks to be worth remembering!

I still wonder what OP was trying to do.....

Oh well; I don't plan on losing any sleep over it!

--
Clif

Tom Wickerath said:
Hi Clif,

In addition to setting a criteria for Is Null, one may need to include
a
criteria for zero lenght strings (ZLS), if these are allowed for the
field in
question (ie. "Allow Zero Length" = Yes, in table design view, for the
field
in question). You can capture both cases with this criteria:

Criteria: Is Null Or =""

See Access MVP Allen Browne's write up on ZLS:

Problem properties ---> See Fields: Allow Zero Length
http://allenbrowne.com/bug-09.html

<snip>
 

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

Similar Threads

Changed my ISP 9
how to program a telephone dialing 2
Import files into access 1
Vacinations ??? 4
Between Time and then date 22
?@$%£*!! BT 20
Control/Manipulate Excel from Outlook 0
Non technical question 3

Back
Top