You need to sign in to do that
Don't have an account?

Formula based on date...that indicates status
Im looking for a formula that is based on date. So basically, a customer calls and in the contact record I want a field that indicats if the customer is "in service" or "out of service". When a customer buys our product they get 1 year of free service. So, 365 days later they are "out of service". I want a field in the contact record to be based on this date. In theory this date would be pulled from the latest "transaction date" in the "retail transactions" section. Is this even possible?
Thanks, Mac
Thanks, Mac
:smileyvery-happy:
So I created a field called "service start". So it derives the date from that field. See below...
IF(Service_Start__c -TODAY()<=0,"Out of Service","In Service")
The problem now is that I want to be out of service 365 days after that date. In its current incarnation its "out of service" if its less than todays date.
How would I edit the formula above to reflect that?
Thanks, Mac