expression

  • Thread starter Thread starter PJ
  • Start date Start date
P

PJ

I have the following expression:

Deal Types: IIf([Customer].[Payoff Date]>=[customer].[close date],"Pay
Off","New Deals")

I also want the expression to show all null values for payoff date. Where
would I put that in my expression??
 
I also want the expression to show all null values for payoff date. Where
would I put that in my expression??

Assuming that you want NULL payoffdates to show as New Deals, try

Deal Types: IIf(NZ([Customer].[Payoff Date],#1/1/100#)>=[customer].[close
date],"Pay Off","New Deals")
 

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

runtime error 1
duplicate records 3
change to UPDATE query 3
query error 1
combine 2 access queries 3
runtime error 3001 invalid argument error message 2
join type not supported 5
query speed 5

Back
Top