Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Power BI only counts JIRA Time Spent instead of summing

I am currently testing Power BI and connection with JIRA worked perfectly. The template is also fine but I would like to customize it.

One of the customization options is to see the sum of time spent on an issue type. Streangely, the filters in Power BI only let me to count the time spent field instead of summing it.

A little bit of googling revealed that that Power BI only support Count function if there is text in the column / or NULLs instead of numbers. And this can only be fixed by editing the data model.

Problem: I do not see the option to edit the datamodel.

Any idea how to fix this?

3 answers

If you start with the Power BI JIRA package (https://powerbi.microsoft.com/en-us/blog/explore-your-jira-data-with-power-bi/), you can then create a function to collect worklogs, and add a custom column to invoke the function, pointing to the column containing the JIRA issue ids, which can be used to form the REST request.

The following query can be used for the function (use New Query -> Blank Query, then Advanced Editor in PowerBI), which will send a request for the worklog for a given issue, then split the worklog into all of the record components that are returned:

(issue as text) as table =>
let
Source = Json.Document(Web.Contents("JIRAURL/rest/api/2/issue/" & issue & "/worklog")),
hasResults=Source[total],
worklogsII = if hasResults > 0 then Source[worklogs] else null,
#"Converted to Table" = if hasResults > 0 then Table.FromList(worklogsII, Splitter.SplitByNothing(), null, null, ExtraValues.Error) else null,
#"Expanded Column1" = if hasResults > 0 then Table.ExpandRecordColumn(#"Converted to Table", "Column1", {"author", "updateAuthor", "comment", "created", "updated", "started", "timeSpent", "timeSpentSeconds", "id", "issueId"}, {"Column1.author", "Column1.updateAuthor", "Column1.comment", "Column1.created", "Column1.updated", "Column1.started", "Column1.timeSpent", "Column1.timeSpentSeconds", "Column1.id", "Column1.issueId"}) else Table.FromValue("Empty")
in
#"Expanded Column1"

It works! Thanks a lot

Hi Matt an Pau. I'm not a tecnical guy. I'm trying to get thgis solution to work. I need ot get the Worklogs from Jira but have no success. I added this querry to the PowerBI but it doesn't work. Not sure what u'm missing. I already got the package to work (that was easy). 

Try with this, where URL is "https://myspacename.atlassian.net":

 

let
Origen = (URL, id_issue) => let
Source = Json.Document(Web.Contents(URL&"/rest/api/latest/issue/"&id_issue&"/worklog")),
#"Convertido en tabla" = Record.ToTable(Source),
#"Tabla transpuesta" = Table.Transpose(#"Convertido en tabla"),
#"Encabezados promovidos" = Table.PromoteHeaders(#"Tabla transpuesta", [PromoteAllScalars=true]),
#"Tipo cambiado" = Table.TransformColumnTypes(#"Encabezados promovidos",{{"startAt", Int64.Type}, {"maxResults", Int64.Type}, {"total", Int64.Type}, {"worklogs", type any}}),
#"Se expandió worklogs" = Table.ExpandListColumn(#"Tipo cambiado", "worklogs"),
#"Se expandió worklogs2" = Table.ExpandRecordColumn(#"Se expandió worklogs", "worklogs", {"started", "timeSpent", "timeSpentSeconds", "comment"}, {"started", "timeSpent", "timeSpentSeconds", "comment"})
in
#"Se expandió worklogs2"
in
Origen

I have just realized that, if you change the sentence "Source = Json.Document(Web.Contents("JIRAURL/rest/api/2/issue/" & issue & "/worklog"))," by Source = Json.Document(Web.Contents("JIRAURL/rest/api/latest/issue/" & issue & "/worklog")), Matt Watts' code works perfectly.

Have anybody managed to solve this issue?  It would be VERY helpful!

Ok, thank you for the idea! But still, is it possible to intergate JIRA data in Power BI Cloud well?

I have exactly the same problem. It is because the JIRA app makes all the fields non-numeric when connecting to PowerBI. I have no idea how to solve this ...

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events