hi i am trying to create 3 level cascading sheet for the following data in jira cloud
This is sample data but in actual i have around 99-100 rows
brand | model | price |
apple | 14 normal | 1234 |
apple | 14 pro | 5678 |
apple | 14 pro max | 2565 |
samsung | s12 | 2345 |
samsung | s12 pro | 6789 |
samsung | s12 ultra | 5545 |
however i realized that this option is not possible. then i was trying to create 2 cascading fields where for the 1st one parent is brand and child is model and for the 2nd cascading firld parent is model and child is price.
now i want the child of 1st cascading field to be updated automatically in the parent of second cascading field
for example: if in 1st cascading field i select parent as apple and child as 14 pro then i want the parent of second cascading field to be updated automatically as 14 pro and child should be updated as 5678
the first cascading field is in the user story and the second cascading field is in the subtask
Note: this is for jira cloud. not for DC.
Thanks in advance
Hi @ram esh
I suggest that you should combine 2 field 'brand' and 'model' as a parent field and the 'price' as a child field. For example: parent (apple - 14 normal) and child (1234)
There's another way to get this by using add-ons: https://marketplace.atlassian.com/apps/5008/multi-level-cascading-select?hosting=cloud&tab=overview
I hope this helps!
Thank you for the quick reply. while i wish i could use addon. i am currently not allowed to use addon. we are trying to acheive using the tools available by default.
and the first sujjestion will also not work as they need to have 2 different cascading fields they way they already are because those individual values are being used elsewhere in the issues. so if we change it then we have to change a lot of things.
i just wish there was something we could do with automation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @ram esh
I think you should try this way: create a cascading custom field with 2 level 'brand' and 'model' and a number field 'Price'. Then associate them to your project.
Then, using automation with sample rule I show in pics below.
When: Issue created
If: "Phone[Select List (cascading)]" = apple AND "Phone[Select List (cascading)]" = "14 normal"
Then: Edit issue field 'Phone's price' = 1234
Else-if: "Phone[Select List (cascading)]" = apple AND "Phone[Select List (cascading)]" = "14 pro"
Then Edit issue field 'Phone's price' = 5678
I hope this helps!
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.