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

Announcements
AWS Degraded - You may experience Community slowness, timeouts, or trouble accessing: LATEST HERE
cancel
Showing results for 
Search instead for 
Did you mean: 
NavinReddy
Creator II
Creator II

Help

Hi All,

I have plenty variables

atleast i need to be put five varibles in one text object

I know one varible we can put in text object

is there any way to put 5varibles in one object

help me some one

Thanks in Avance

rohith

1 Solution

Accepted Solutions
MayilVahanan

HI

Try like this

='1' & Variable1 & '2 ' & variable2 &' 3' & variable3 &' 4' & variable4 & ' 5 '& variable5

Hope that helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

5 Replies
tresesco
MVP
MVP

This?

=Variable1& 'Your String' & Variable2  & Variable3

'&' is string concatenation operator

jfkinspari
Partner - Specialist
Partner - Specialist

It's easy.

Just add all the wanted variables to the textbox.

Like if you have 3 variables names Var1, Var2 and Var, your expression in the text box could like

Var1 & ' ' & Var2 & ' ' & Var3

This will make a space between the variables.

mr_janne
Contributor III
Contributor III

tresescos reply is correct and if you like to implement line feeds you can use:

= Variable1 & chr(10) & Variable2 etc.

regards. Janne

nilesh_gangurde
Partner - Specialist
Partner - Specialist

Dear niranjan,

if i have 2 variables : variable 1 = vTOP and variable 2 = vTDAmount

then we can display both in text object as follows:

='$(VTOP)' & '$(vTDAmount)'

-Nilesh

MayilVahanan

HI

Try like this

='1' & Variable1 & '2 ' & variable2 &' 3' & variable3 &' 4' & variable4 & ' 5 '& variable5

Hope that helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.