• Efren
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies

Hi,

I've tried this a few different ways to make this work, but have been unsuccessful. My company has multiple program years for our clients. Most times, we are interested in pulling reports that are specific to the client's current program year. Unfortunately, not all program years start on the same date, and don't last the same length of time. 


I thought, with a "Current Program Year" identifier (checkbox) I would solve this. I would eliminate the need for users to keep this field up to date by using a Field Update Workflow. However, I just can't get it to work. If anyone can help, I'd greatly appreciate it:

 

IF(AND (Program_Year_Start_Date__c < Today(), Program_Year_End_Date__c > Today()), Program_Year_Status__c = True, null)

 

 

IF(AND (Program_Year_Start_Date__c < Today(), Program_Year_End_Date__c > Today()), True, null)

 

 

Program Year Start Date and Program Year End date are what we are comparing. If today falls between these two dates, then we are in the client's current program year. Current Program Year (i.e.., Program Year Status) should then be checked.

 

The syntax appears to be correct, but the the workflow doesn't work.

 

 

 

  • February 08, 2013
  • Like
  • 0