/
Customizer Script to report User key information using User Work Logged by Date gadget in the Dataplane app
Customizer Script to report User key information using User Work Logged by Date gadget in the Dataplane app
This article helps you to find the unique User key in the dataset using the User Work Logged by Date gadget.
Steps
Login to Jira. Navigate to the Dataplane Report app, then select Reports.
Select the "User Work Logged by Date" report.
Select a Monthly time interval.
Search Projects, Categories, Boards, and Filters, or use JQL as needed.
Compose the script below to obtain results based on user key data.
customizeResult { Matrix matrix = getMatrix(); def workedByCol = getColumn("Work Logged By") def NEW_COLUMN_NAME = "Userkey" def NEW_COLUMN_INDEX = matrix.getIndexOfColumn(getColumn("Work Logged By")) + 1; addColumn(NEW_COLUMN_NAME, DataColumnType.TEXT, NEW_COLUMN_INDEX) { row, col -> def workLoggedByUserkey = matrix.getValue(row.getRowNum(), workedByCol) return workLoggedByUserkey } }
Run the report to get the desired result.
Navigate to Data to view the data in the result.
Related content
How to use the Customizer Script to filter the currently logged user for the 'Issues Work Log Table' Report in the Dataplane App
How to use the Customizer Script to filter the currently logged user for the 'Issues Work Log Table' Report in the Dataplane App
More like this
Customizer script to report the team members from a specific team segmented by issue type using the User Work Logged by Date gadget using the Dataplane Reports
Customizer script to report the team members from a specific team segmented by issue type using the User Work Logged by Date gadget using the Dataplane Reports
More like this
How to use the Customizer script for Work Logged Team Filter in Dataplane app
How to use the Customizer script for Work Logged Team Filter in Dataplane app
More like this
User/History report and gadget
User/History report and gadget
More like this
How to filter report results to only those work log entries authored by specific users
How to filter report results to only those work log entries authored by specific users
More like this
Customizer Script to sort the horizontal axis value of a vertical bar chart in descending order
Customizer Script to sort the horizontal axis value of a vertical bar chart in descending order
Read with this