Skip to main content
Level 2
April 7, 2025
Solved

Request to Project Conversion Metrics

  • April 7, 2025
  • 2 replies
  • 348 views

Has anyone created a cycle time report for the amount of time it takes from request to project conversion?

Best answer by SuryaLakhani

Hi,

 

You should be able to do this at the project level with DATEDIFF, both in a report or a calculated field:
ROUND(DATEDIFF({entryDate},{convertedOpTaskEntryDate}),2)

2 replies

SuryaLakhani
SuryaLakhaniAccepted solution
Level 4
April 8, 2025

Hi,

 

You should be able to do this at the project level with DATEDIFF, both in a report or a calculated field:
ROUND(DATEDIFF({entryDate},{convertedOpTaskEntryDate}),2)

Level 2
April 14, 2025

Thank you!