Hi,
I am creating a word document template for xporter that needs to extract a label. This issue I am running into is that each issue has 2 labels. Label1 is used for the kanban board filter and Label2 is the one I want to extract. Is there anyway I can only extract the 2nd label?
I know the syntax for extracting labels is : ${Labels}. Is there anyway I could write some filter on the mapping like ${Labels != Label1}?
Hi Joseph,
Here you are an example:
%{ var secondLabel=’${Labels}’.split(‘ ‘);secondLabel [1]}
Cheers,
Rui Rodrigues.
Hey Rui,
I am still having trouble getting it to print the label I want. The situation is:
- I have 6 epics and each has 2 labels. 1 is "Project_Kanban" and the other is "Project_Team"
- Project Team is unique for every single epic.
- Project_kanban label is always going to be on an epic because my kanban board uses it to display the issues.
- I want my xporter template to print out the unique project team for each epic.
I tried your solution but was unable to get it to print the second label (Project_Team). Do you have any suggestion as to why? If your solution still works for my issue would you mind explaining?
Thanks,
Joseph
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What is the value of your Label's field?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You want to print labels that starts with "Team_" basically. Am I right?
Epics has labels; Project_Team and Project_Kanban and each issue of them contains "Teams_" for each teams. What you want is printing all the teams per issue that belongs to an epic, right?
Cheers,
Rui Rodrigues.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
yes, but they may not always start with "team". I want to print out the team label, not the Kanban label. Each epic only has two labels. I don't need to print off the team label for each story in the epic.
my report currently is:
Epic name
Labels (this is where i want to print just that one team label and not both labels)
Summary
Comments
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
What's printed when you put the following code in your template?
%{ var secondLabel=’${Labels}’.split(‘ ‘);secondLabel [1]}
This code block should print the second label.
If you are exporter Epics, for each one it will print just the second label.
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Which version of Xporter do you have?
Put just the following placeholder in your template:
${Labels}
What's is printed?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oh yeah.
Great.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello community,
I want to separate my labels and add an semicolon ";" between my labels in the export. I have an different quantity of labels in different tickets. Can you please help me how can I do this?
Thank you in advance!
Kind regards,
Markus
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.