I'm exporting from the Issue navigator to Excel. The only thing that's missing is a column for direct links to every issue found in the search query results.
For example:
Issue Type | Issue key | Summary | Jira |
Bug | AB-118 | Create | Link to issue |
Hey @Alon - A hack you could use is to create a formula field in Excel that concatenates the Jira URL and the issue key.
Like so: concat("https://examplegear.atlassian.net/browse/",A1)
It's a nice hack, but how can I implement this on 500 issues/cells?
The keys are not exactly following numeric order.
Issue key | Summary | Priority | Severity |
NGA-118 | Create | Highest | Critical |
NGA-173 | Series | High | Medium |
NGA-175 | Message | High | Medium |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
HI @Alon - I made an example using the data you supplied. Hopefully it helps illustrate the solution better.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately it didn't work. The the plain text doesn't change in a corresponding hyperlink to the issues in Jira.
Besides the point, got no access to google sheets, and no function of CONCAT (only CONCATENATE).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Concatenate is the same thing in Excel. In Excel you can use the Hyperlink() function to convert the text to a link.
So in Excel you would change the formula to:
Hyperlink(Concatenate("https://examplegear.atlassian.net/browse/",A1))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there any update on this issue? this seems like a fundamental thing that should be supported to have URL links to each issue - without it seems very unusable.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are you
- using Jiras built in Excel exporter or a plugin?
- using Jira Server or Jira Cloud?
Assuming the built in exporter in Jira Server, then make sure you have added the column called "Key". The one you have specified, "Issue Key" is used in JQL.
If Jira Cloud then that export runs as csv file and wont give you http links, that one is text only.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@atlassian Can you implement logic to import the JIRA issues with Hyperlink enabled by default when we pull a report?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Alon
That's strange because when I export current fields on cloud then I am able to export the linked issue in outward links section in csv file. Please see the below screenshot.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am using Jira -cloud and no apps. But here the export contains the link key in plain text and not direct links.
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.