Skip to main content
I have a utilization calculation I need to make. 

 

Utilization = (Spent / Released) * (((Today-StartDate)+1)/DaysinQuarter)

 

My question is this:  Can I calculate the Today - StartDate piece in a report ?

 

Thanks !!
6 respuestas
  1. 5 feb 2013, 19:03
    Hey Eric,

     

    Its definitely attainable but you cant do it using a custom Report Formula. You'd need to add a custom field to the object which you are reporting on. 

     

    Is DaysinQuarter a static amount (ie always 90 days or is it 90days less todays progress into the quarter?)

     

    Formula would look something like this:

     

    ((Spent__c / Released__c) * (((TODAY()-StartDate)+1)/90))
0/9000