Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Coloring Columns in a Structure in different colors

Holt Boyle
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
Oct 23, 2023

Hi,

I'm formatting my structure and for better visualization I want to color for example my assignee columne every assigne in a different color. Is that possible?

I have seen some formulars, but nothing has worked for me really. So please let me know thanks.

1 answer

0 votes
Stepan Kholodov _Tempo_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Oct 23, 2023

Hello @Holt Boyle 

The coloring can indeed be done via the Formula column. For example, here is the formula you can use for displaying the Assignee value with different colors based on the user:

if assignee = "user1" : concat("{color:red}",assignee,"{color}") else
if assignee = "user2" : concat("{color:yellow}",assignee,"{color}") else
if assignee = "user3" : concat("{color:green}",assignee,"{color}")

You can add as many conditions as you need using the else operator. The format of the column should be Wiki Markup. 
Alternatively, you can color the whole cell by using a different markup defining color codes for each value:
concat("{panel:bgColor=#248f24}",assignee,"{panel}")

I hope this helps. If you need further assistance, please reach out to us directly at our support portal.

Best regards,
Stepan Kholodov
Tempo

Suggest an answer

Log in or Sign up to answer