I am using the Jira for confluence macro to display a list of tickets and their associated value in a column we are calling Revenue. I want to use the table transformer to add a dollar sign ($) in front of the values - as Jira does not have this field formatted as currency.
Right now I see:
Key | Revenue
Ticket 1 | 124.5
Ticket 2 | 1000.0
I have tried utilizing Concat or Format for SQL and can't figure out how to append the '$' in front of all
SELECT CONCAT('$', FORMAT('Revenue'));
Hi @Megan,
You may use the following SQL query:
SELECT 'Key',
FORMATWIKI("$" + 'Revenue') AS 'Revenue, $'
FROM T*
Hope it helps your case.
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.