Hi everyone,
I'm currently setting up a asset management in Jira for my company. All in all it's moving pretty smoothly but I'm failing to achieve some key points:
Thanks in advance and best Regard
Niklas
Hi Adam,
From the Jira UI, there is currently not a way to export worklog data from a specific month without getting previous worklog months included.
However, you can pull the worklog data from the Jira database. All worklog data is stored in the "worklog" table and you can run a query similar to the following:
select * from worklog where startdate >= '2018-04-01' AND startdate <= '2018-04-30'
See: Worklog Table
You will have to associate the id to the jirasissue.id in order to determine the relation to the issue.
If you do not wish to run queries on your database, you might be interested in checking out the Timesheet Reports and Gadgets as the plugin allows you to extract work log information. The following documentation provides steps on how to achieve this with the plugin: Timesheet Reports and Gadgets Documentation
Regards,
Javier A.
Hi there! I'm the PM on Jira Cloud for Google Sheets, and we're working to make this easy. Check out this post to see how you can import all of your worklog data into a spreadsheet with just a few clicks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.