Change Label if Negative (1 Viewer)

chuckster

Registered User.
Local time
Today, 10:54
Joined
Oct 4, 2000
Messages
52
I have a field [field3] that subtracts [field1] from [field2]. Both of the other fields are calculated in themselves.

I want a label to change what it says depending on the value of [field3]. That is if [field3]<0 then label1 = "Customer Owes Us" if [field3] is >0 then label1 = "We owe Customer.

Thanks in Advance
 

llkhoutx

Registered User.
Local time
Today, 04:54
Joined
Feb 26, 2001
Messages
4,018
Try: iif (field3<0,"Description 1","escription 2")
 

Users who are viewing this thread

Top Bottom