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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

space between two values

Hello,

I have a question. I have a input field with two values, the name and the default.

But between the two values is no space (in the dashboard), how can I get this?

the code is:

=FieldValue('Name',1) & FieldValue('Default',1)

Can someone help me?

thanks in advance.

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

=FieldValue('Name',1) & ' ' & FieldValue('Default',1)


talk is cheap, supply exceeds demand
marcus_sommer

Try:

=FieldValue('Name',1) & ' ' & FieldValue('Default',1)

- Marcus