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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Text + expression in button

Hi

I have created a button that links to a sheet in my QV with some text.

After this text i want to have the summary of an expression shown.

In text field for the button i can put my expression =sum (if ([Level 1 Tryck]='Line_3612', P2_tryck='x'or P2_tryck='X')*-1) and this is ok but i also want the text BD 3612 to show in the button.

Is it possible to mix text with an expression so they are both visible on the same button?

Best regards

/Mats

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Try like:

='Your text' & expression

Note: '&' is used to concatenate strings

View solution in original post

3 Replies
tresesco
MVP
MVP

Try like:

='Your text' & expression

Note: '&' is used to concatenate strings

Not applicable
Author

Yeah you can do that following the folliwing format: '='your text' & function.

='sales are ' & sum(sales)

Not applicable
Author

'BD 3612' & sum (if ([Level 1 Tryck]='Line_3612', P2_tryck='x'or P2_tryck='X')*-1)

The & is used for string concatenation