Add another senario

B

Bob Vance

Can I add this into my code, <1 , "Credit"

=IIf([tb1Month]>1,"1 Month Overdue",Null)
 
P

pietlinden

Can I add this into my code,  <1 , "Credit"

=IIf([tb1Month]>1,"1 Month Overdue",Null)

=IIf([tb1Month]>1,"1 Month Overdue",IIf([tb1Month]<1,"Credit",Null))
 
Top