• David Langan
  • NEWBIE
  • 0 Points
  • Member since 2008

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
I want to modify this formula to stop referencing today's date and instead reference the "Start Date" and "End Date" fields in the reports tab.
 
IF(
AND(
Sales_Period_Ending__c <= TODAY(),
Sales_Period_Ending__c >= DATE(YEAR(TODAY()), 1, 1)
),
Premium_Sold__c ,
0
)
 
What can I do?
 
 
Thanks,
 
 
I want to modify this formula to stop referencing today's date and instead reference the "Start Date" and "End Date" fields in the reports tab.
 
IF(
AND(
Sales_Period_Ending__c <= TODAY(),
Sales_Period_Ending__c >= DATE(YEAR(TODAY()), 1, 1)
),
Premium_Sold__c ,
0
)
 
What can I do?
 
 
Thanks,