Issue: I am using the Jira Issue/Filter macro in a Confluence page (wrapped in a few other macros - see below). The date pulls in from Jira as: Month Day, Year (example: April 04, 2022). However, I want to change it so it appears as Day Month, Year in the Confluence table. I'm not sure what else I need to add.
Here is my SQL.
Hi @Laurie Huth ,
Please try the following settings for the Table Transformer macro:
Set the required Date Format that you want to see in the result table:
And use the following SQL query:
SELECT T1.'Key',
FORMATDATE(T1.'Due') AS 'Expected Impact Date'
FROM T1
Hope this helps.
Thank you! How does this work if you have many more lines of SQL query? The date goes blank if I add more to this query.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you! That works perfectly. I can see the date modified like I wanted. You are awesome!
However, I notice when I add my other lines to this SQL query, the date disappears. This happens even if I add just one more line, or all of them.
Here is the very long script I had originally:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Change the highlighted line to
FORMATWIKI(SUM(FORMATDATE('Due'))) AS 'Expected Impact Date',
It should work this way.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Katerina -
Thank you, thank you! You are such a rock star!! I really appreciate all the solutions you contribute.
Virtual hugs to you,
Laurie
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.