You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
This was driving me a bit nuts, so I thought I'd share in case it might help others as an example.
We are using Jira with Structure/Structure.Gantt.
There is a custom controlled field that represents our internal company projects that follows this pattern:
<4-8 numbers>:<string>
Examples:
Use Case:
I simply wanted to display the project name/string without the numbers as a column (or grouping) in my structure.
Solution:
REPLACE_AT(project,0,SEARCH(":",project,0),"")
Using the docs from ALM's site, I landed on the combination of REPLACE_AT and SEARCH.
REPLACE_AT allows me to remove the characters from the delimiter (:), but since the delimiter position was variable, I was able to use SEARCH to identify it's location.
I really wanted to define the SEARCH portion as a separate variable utilizing WITH, but I couldn't quite get that working.
If there is a more efficient way or suggestions on WITH, please share!
I hate to resurrect an old post, I have an issue close to this as well. Though I am trying to search for numbers for a build in the summary. I have a new post that isn't getting much tracking. But this thread got me the closest to getting it.
Really appreciate if anyone has suggestions or solutions.