@Sriraghavendran Prabhakaran Thank you for posting your question in Microsoft Q&A, apologize for any inconvenience caused on this.
Unfortunately, we don't have any straight/out of the box solution for this.
To achieve your requirement, you can create a custom solution/ PowerShell script which should have below actions.
- Invoke this Rest API Workflow Trigger Histories to list the run histories of particular workflow. This rest Api supports filtering and thereby using the $filter parameter in the request URL and $filter supports these filters on Status, StartTime, and ClientTrackingId properties only.
- Once you have listed the run histories then you can export the list to csv using export-csv in PowerShell
Hope this helps, let me know if you have any further questions on this.