In mysql I can do like
SELECT 'label1', SPACE(30), 'label2'
But once this query brought into metabase question / dashboard then this space is ignored. How to achieve it?
In mysql I can do like
SELECT 'label1', SPACE(30), 'label2'
But once this query brought into metabase question / dashboard then this space is ignored. How to achieve it?
Hi @eric.halim
Sounds like you're looking for this:
https://github.com/metabase/metabase/issues/10372 - upvote by clicking on the first post
A workaround is to give the "spacing" column a name with underscores like _______
...
Yes exactly!
Thanks @flamber