function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
JaxBeachJaxBeach 

How can I do an Annualized Sales formula in Salesforce?

I have the formula in Excel, I just don't know how to convert it so Salesforce recognizes it.

 

The Excel formula is

 

((YTD Sales / (365- (DATE (2013,12,31) - TODAY ()))*365))

 

Thanks :-)

Best Answer chosen by Admin (Salesforce Developers) 
phiberoptikphiberoptik

Do you have a field in Salesforce at the Account level that captures YTD Sales? If so, you just need to use this formula to replicate your Excel one:

 

(YTD_Sales__c/(365-(DATE(2013,12,31)-TODAY()))*365)

 

All Answers

phiberoptikphiberoptik

Do you have a field in Salesforce at the Account level that captures YTD Sales? If so, you just need to use this formula to replicate your Excel one:

 

(YTD_Sales__c/(365-(DATE(2013,12,31)-TODAY()))*365)

 

This was selected as the best answer
JaxBeachJaxBeach

It worked!  Thanks for your help with this :-)  much appreciated