Skip to main content
Question

Report showing % of CTAs closed within 7 days of being created, by week

  • January 14, 2019
  • 2 replies
  • 35 views

katie_b
Forum|alt.badge.img+3
Is there a way I can create a line chart showing the % of CTAs closed within 7 days summarized by week (created date) and filtered by assignee? I feel like the data is there, but not sure how to set up a report to show it in this format or if a custom field calculating the % may need to be created.

2 replies

christopher_sanderson
Forum|alt.badge.img+3
Hey Katie

I created a Vidyard Video that you can view here, but in order to do this you need a formula field added to the Call to Action object. I believe that there are in report formulas on the report roadmap, but if you are looking to get this done today, this will be the easiest way.

Formula on Call to Action object

  • label= Closed in 7 days
  • type = checkbox
  • value = IF( JBCXM__ClosedDate__c - JBCXM__CreatedDate__c <= 7, TRUE, FALSE)
Basically, this field will then allow us to do the appropriate grouping and summarization, giving you what you were looking for.

https://share.vidyard.com/watch/fyz2s8du8HQc4162tNqAhi


katie_b
Forum|alt.badge.img+3
  • Author
  • Helper ⭐️
  • January 15, 2019
That is exactly what I needed. Thank you!