Forum Discussion
PaulPeterson1
6 years agoQrew Assistant Captain
For your first case:
If(Year([Maximum Current Contract Date] )>=Year(Today() and
[Maximum Current Contract Date]<AdjustYear([Maximum Current Contract Date],1),"ACTIVE","INACTIVE")
For the other cases, are the values "HL","ASC","ANC", "TT","CruzVTT","TAN", and "GRT","RWP","VSA" all requires or any of the values is required?
------------------------------
Paul Peterson
------------------------------
If(Year([Maximum Current Contract Date] )>=Year(Today() and
[Maximum Current Contract Date]<AdjustYear([Maximum Current Contract Date],1),"ACTIVE","INACTIVE")
For the other cases, are the values "HL","ASC","ANC", "TT","CruzVTT","TAN", and "GRT","RWP","VSA" all requires or any of the values is required?
------------------------------
Paul Peterson
------------------------------
- KimCameron26 years agoQrew TraineeI think I am understanding you...the CRUISE CLUB field is a required field and it will be filled with one of the values listed. I can make it not required because I am the only one with access to the table...I just pull data from that table into the customer table.
 Thanks,
 Kim
 ------------------------------
 Kim Cameron
 Admin/Sales
 Vacation Tour & Travel
 Conway AR
 15013295434
 ------------------------------- PaulPeterson16 years agoQrew Assistant CaptainTry these:
 If(Contains(List("HL","ASC","ANC","TT","CruzVTT","TAN"), [CRUISE CLUB]),"ACTIVE","INACTIVE")
 If(Contains(List("GRT","RWP","VSA"), [CRUISE CLUB]),"CXL-ENROLL IN CRUZVTT")
 ------------------------------
 Paul Peterson
 ------------------------------- MarkShnier__You6 years agoQrew Legend I think that the formulas should be
 If(Contains(List(",", "HL","ASC","ANC","TT","CruzVTT","TAN"), [CRUISE CLUB]),"ACTIVE","INACTIVE")
 If(Contains(List(",", "GRT","RWP","VSA"), [CRUISE CLUB]),"CXL-ENROLL IN CRUZVTT")
 ------------------------------
 Mark Shnier (YQC)
 Quick Base Solution Provider
 Your Quick Base Coach
 http://QuickBaseCoach.com
 mark.shnier@gmail.com
 ------------------------------