Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

×
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

Format (bold) portion of merged text in a table

Currently using the ‘Table Transformer’ Macro...

FORMATWIKI(SUM('Summary' + "\n" + 'Additional Info')) AS 'Change Summary',

where the two fields in JIRA that I am pulling from are called Summary and Additional Info and are combined into one cell with header name Change Summary.

Question: Is there a way to just bold the Summary text in that cell when it pulls in - and leave the Additional Info text un-bolded?

I believe it has something to do with asterisks, but I think I am putting them in the wrong place.

 

 

 

 

 

 

2 answers

1 accepted

3 votes
Answer accepted
Katerina Kovriga _Stiltsoft_
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.
Mar 23, 2022

Hi @Laurie Huth ,

The Table Transformer macro refers to the new combined cell as a whole one, so it operates with all the contents. 

I mean if you join the columns, then the two parts Summary and Additional Info can be both bold or not bold (but both, not partly). So, I'm afraid that your case is not possible.

Thanks! You are such a rockstar at responding to these questions so quickly, Katerina! I appreciate it. 

I did just figure out something else that might work for me (i.e., a workaround): 

FORMATWIKI(SUM("*Summary*: " + 'Summary' + "\n" + "*Additional Info*: " + 'Additional Info')

 

This is the result:

Screenshot 2022-03-23 100506.png

I was able to put asterisks around text to bold it, but I couldn't figure out how to do it for the actual JIRA field.

Katerina Kovriga _Stiltsoft_
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.
Mar 23, 2022 • edited

Your query seems okay:

Wed 10-1.png

SELECT 'Key',
FORMATWIKI(SUM("*Summary*: " + T1.'Summary' + "\n" + "*Additional info*: " + T1.'Additional Info')) AS 'Change Summary'
FROM T1
GROUP BY 'Key'

Wed 10-2.png

You may also use the two asterisks instead of one and get an Italic bold.

SELECT 'Key',
FORMATWIKI(SUM("**Summary**: " + T1.'Summary' + "\n" + "**Additional info**: " + T1.'Additional Info')) AS 'Change Summary'
FROM T1
GROUP BY 'Key'

Wed 10-3.png

The same goes with the Jira Issues macro - be aware of what exactly you are typing in. I mean type in "T1." and wait for the macro to present an autocomplete menu to choose from (sometimes Jira Issues macro can modify the column names).

The Jira Issues macro should be wrapped in the Table Transformer macro body instead of the manually created table from my example.

Like # people like this

Is there a way to maintain the text style typed in? 

I have a Jira table in a table transformer. However one field we pull is a text space, with vary comments/notes. This text has a specific format in our jira, we bold the title and colored code the other. 

 

When I just have the JIRA table in confluence it reflects exactly what was input to jira, with the colored text and bolded. However once it is in the table transformer the text styles are removed. 

 

Is there a way to maintain the text style while in the table transformer? 

Stiltsoft support
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.
Sep 21, 2023

You may use commas instead of pluses for the FORMATWIKI function to preserve initial cell formatting, please check this example: https://docs.stiltsoft.com/tfac/dc-server/advanced-table-cells-formatting-58426218.html#Advancedtablecellsformatting-Preservinginitialcellformatting

Perfect, i see how it works now!

Like Stiltsoft support likes this
Stiltsoft support
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.
Sep 21, 2023

Not sure that I've got you right: try to replace pluses with commas for your query. Commas are used to preserve initial cell formatting.

And, as I see, you have an extra symbol in each function:

1px}", + 'Issues'

You should have 1px}" + 'Issues' or 1px}", 'Issues'.

Like # people like this

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events