Sorting Data from JIRA

Dorse411

New Member
Joined
Aug 16, 2019
Messages
3
Evening all.
I have been tasked with sorting out a report that comes out of jira kanban into a format that our timesheet system can read, any ideas/suggestions would be greatly appreciated.
report from jira outputs like so
IssueProjectTask CodeDateHours
floppy disk dead6201114/01/20202
crt monitor exploded6356914/01/20203
C64 wont play farcry 10666615/01/20201

Need it to out put into something like so
ProjectTask CodeMondayTuesdayWednesdayThursdayFriday
6201102000
6356903000
666600100

will need to add totals to the bottom but I can do that, and i know the formula to turn the numbered date into text, as well as copying to a new sheet.

My issue is getting the data and spliting it up into the days of the week.

Any ideas?
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
with Power Query
totals.png

Code:
// Table1
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    Type = Table.TransformColumnTypes(Source,{{"Issue", type text}, {"Project", Int64.Type}, {"Task Code", Int64.Type}, {"Date", type date}, {"Hours", Int64.Type}}),
    Day = Table.AddColumn(Type, "Day Name", each Date.DayOfWeekName([Date]), type text),
    Pivot = Table.Pivot(Day, List.Distinct(Day[#"Day Name"]), "Day Name", "Hours", List.Sum),
    Sort = Table.Sort(Pivot,{{"Project", Order.Ascending}})
in
    Sort
there is no more days because column Date doesn't contain more than you see
column Date can be removed from the result
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,976
Messages
6,122,543
Members
449,089
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top