Hi!
I'm wondering if it's possible to have my project key and/or project summary once again be a link back to the issue. They were previously links, but as soon as I added format wiki sql language for coloring the background of the rows, the links disappeared.
Here's the SQL I did for the background coloring:
SELECT
FORMATWIKI("{cell:bgColor=" +
CASE WHEN T1.'Severity Score' <= "4" THEN "#b3ff99"
WHEN T1.'Severity Score' > "4" and T1.'Severity Score'<"15" THEN "#ffff99"
WHEN T1.'Severity Score' >= "15" and T1.'Severity Score'<="25" THEN "#ff9999"
ELSE "#ffffff"
END
+ "}" + T1.'Key' + "{cell}") AS 'Key',
FORMATWIKI("{cell:bgColor=" +
CASE WHEN T1.'Severity Score' <= "4" THEN "#b3ff99"
WHEN T1.'Severity Score' > "4" and T1.'Severity Score'<"15" THEN "#ffff99"
WHEN T1.'Severity Score' >= "15" and T1.'Severity Score'<="25" THEN "#ff9999"
ELSE "#ffffff"
END
+ "}" + T1.'Summary' + "{cell}") AS 'Summary',
FORMATWIKI("{cell:bgColor=" +
CASE WHEN T1.'Severity Score' <= "4" THEN "#b3ff99"
WHEN T1.'Severity Score' > "4" and T1.'Severity Score'<"15" THEN "#ffff99"
WHEN T1.'Severity Score' >= "15" and T1.'Severity Score'<="25" THEN "#ff9999"
ELSE "#ffffff"
END
+ "}" + T1.'Severity Score' + "{cell}") AS 'Severity Score'
FROM T*
Any ideas would be great!
Best,
Holly
