Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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

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


talk is cheap, supply exceeds demand
marcus_sommer

Try:

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

- Marcus