expression

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??
 
J

John W. Vinson

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

Top