Add to a Script!

B

Bob

=IIf([tbOverDueAmount]>1,"Overdue Amount:",Null)
How Can I add this to the Script <-1"Credit"


Thanks in advance.........Bob Vance
 
D

Douglas J. Steele

Bob: You've asked this before. If you didn't get a response, it's because
your question isn't clear.

Explain in words what you're trying to do.
 
B

Bob

What I want to do is display "Overdue Amount" When There is more than $1
showing and if there is more than ($1) credit showing the word "Credit" to
appear. The text box that the Amounts appear in is called tbOverDueAmount
Thanks Bob

Douglas J. Steele said:
Bob: You've asked this before. If you didn't get a response, it's because
your question isn't clear.

Explain in words what you're trying to do.


--
Doug Steele, Microsoft Access MVP

(no private e-mails, please)


Bob said:
=IIf([tbOverDueAmount]>1,"Overdue Amount:",Null)
How Can I add this to the Script <-1"Credit"


Thanks in advance.........Bob Vance
 
D

Douglas J Steele

Not the greatest description. I'm assuming that you're talking that if the
field tbOverDueAmount is greater than 1, you want "Overdue Amount", if it's
less than -1, you want "Credit", otherwise you want nothing.

=IIf([tbOverDueAmount]>1,"Overdue
Amount:",IIf([tbOverDueAmount]<-1,"Credit:",Null))


--
Doug Steele, Microsoft Access MVP

(no e-mails, please!)


Bob said:
What I want to do is display "Overdue Amount" When There is more than $1
showing and if there is more than ($1) credit showing the word "Credit" to
appear. The text box that the Amounts appear in is called tbOverDueAmount
Thanks Bob

Douglas J. Steele said:
Bob: You've asked this before. If you didn't get a response, it's because
your question isn't clear.

Explain in words what you're trying to do.


--
Doug Steele, Microsoft Access MVP

(no private e-mails, please)


Bob said:
=IIf([tbOverDueAmount]>1,"Overdue Amount:",Null)
How Can I add this to the Script <-1"Credit"


Thanks in advance.........Bob Vance
 
B

Bob

Absolutely Brilliant, that's it thanks Douglas...Bob

Douglas J Steele said:
Not the greatest description. I'm assuming that you're talking that if the
field tbOverDueAmount is greater than 1, you want "Overdue Amount", if
it's
less than -1, you want "Credit", otherwise you want nothing.

=IIf([tbOverDueAmount]>1,"Overdue
Amount:",IIf([tbOverDueAmount]<-1,"Credit:",Null))


--
Doug Steele, Microsoft Access MVP

(no e-mails, please!)


Bob said:
What I want to do is display "Overdue Amount" When There is more than $1
showing and if there is more than ($1) credit showing the word "Credit" to
appear. The text box that the Amounts appear in is called tbOverDueAmount
Thanks Bob

Douglas J. Steele said:
Bob: You've asked this before. If you didn't get a response, it's because
your question isn't clear.

Explain in words what you're trying to do.


--
Doug Steele, Microsoft Access MVP

(no private e-mails, please)




=IIf([tbOverDueAmount]>1,"Overdue Amount:",Null)
How Can I add this to the Script <-1"Credit"


Thanks in advance.........Bob Vance
 

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