Hi Guys,
Couldn't find a solution for this, so i hope you can help me.
I'm doing bulk import for issues with csv file.
In my file each issue also have multi version, for example:
Summary Fix Version
test1 5.1, 2.2, 4.7
test2 2.2, 6.1
So, instead create 4 versions in the project: 5.1, 2.2, 4.7, 6.1
It creates 2 version: "5.1, 2.2, 4.7" and "2.2, 6.1"
What should i do to make it import 4 versinos, each version separately like:
5.1
2.2
4.7
6.1
And not 2 versions?
Thanks,
Nir
Hello,
Have a look at this documentation:
https://confluence.atlassian.com/jiracorecloud/creating-issues-using-the-csv-importer-765593817.html
Go to the "Multiple values that need to be aggregated into single issue fields" part.
IssueType, Summary, FixVersion, FixVersion, FixVersion, Component, Component
bug, "First issue", v1, , , Component1,
bug, "Second issue", v2, , , Component1, Component2
bug, "Third issue", v1, v2, v3, Component1,
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.
You are welcome! :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, I think your advice will help!
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.