Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
thomas_2583
Contributor III
Contributor III

Button - Add extra spaces between words

Hi, 

I have created a button where by I have a certain way I want to deliver the text output. 

I want a space between each letter which is fine, but when I need to create a wider space between words, I can't seem to do it. 

Example: 

T E S T (This works fine as one word)

T E S T B U T T O N (2 words added but looks like one long word)

T E S T      B U T T O N (This is how I would like the output)

Any idea how to create the extra space between the 2 words please like the last example?

1 Solution

Accepted Solutions
GaryGiles
Specialist
Specialist

You can try using chr(160) instead of a space.  Something like this:

='T E S T'&repeat(chr(160),5)&'B U T T O N'

View solution in original post

1 Reply
GaryGiles
Specialist
Specialist

You can try using chr(160) instead of a space.  Something like this:

='T E S T'&repeat(chr(160),5)&'B U T T O N'