You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
I have a column in a table filled with Handy Statuses that are "Rev_0", "Rev_1", "Rev_2", "Rev_3".
I'm trying to use the Table Transform macro to filter this table down to certain Rev's, like so:
SELECT * FROM T* WHERE 'Rev_#' = "Rev_0";
(Table Transform's SQL Query section says to reference columns using single quotes.)
This is everything I've tried so far:
SELECT * FROM T* WHERE 'Rev_#' = "Rev_0";
SELECT * FROM T* WHERE 'Rev_#' = 'Rev_0';
SELECT * FROM T* WHERE 'Rev_#' = Rev_0;
SELECT * FROM T* WHERE 'Rev_#' = "REV_0";
SELECT * FROM T* WHERE 'Rev_#' = 'REV_0';
SELECT * FROM T* WHERE 'Rev_#' = REV_0;
SELECT * FROM T* WHERE 'Rev_#' = 0;
. . . And much, much more, frankly.
Thank you for any and all assistance!
SELECT * FROM T* WHERE ('Rev_#' = "REV_0")
This finally did the trick.
Hi @Denver Thomas ,
Indeed the issue was in the extra ; at the end of the query, you were faster than us. :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Denver Thomas ,
Thank you for mentioning our Handy Macros for Confluence app!
Just to let you know, you’re always welcome to reach out anytime, as our support team is here to help. If you have any concerns or ideas about the app functionality, you can contact our support, and we gladly assist you and propose solutions where applicable.
Have a lovely Friday!
Best,
Anastasia
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.