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: 
peschu123
Partner - Creator III
Partner - Creator III

Line Break in Labels

Hi,

instead of using TOTALs in my straight table, I use labels like: ='Bearbeitungszeit ( ' & (sum(Bearbeitungszeit)) &' h )'

Table is format with wrapping of labels in 2 lines.

Is it possible to define fixed line breaks in the above example like (I use <br> html tag to show where the break should be):

='Bearbeitungszeit <br> ( ' & (sum(Bearbeitungszeit)) &' h )'

Thank you very much for any help

1 Solution

Accepted Solutions
MayilVahanan

HI

Try like this

='Bearbeitungszeit ' & Chr(10) &' ( ' & (sum(Bearbeitungszeit)) &' h )'

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

2 Replies
MayilVahanan

HI

Try like this

='Bearbeitungszeit ' & Chr(10) &' ( ' & (sum(Bearbeitungszeit)) &' h )'

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
peschu123
Partner - Creator III
Partner - Creator III
Author

Thank you for the ultrafast reply...

It works very well, when the column is bigger than the part before the break ( kinda logic and obviously).

This is great for me. If you have a quick idea how to manage, to set the column width from 0 - Chr(10) it would be great. Even if the second line is longer than first.

That it looks like this:

Bearbeitungszeit

( 200.000 h /Mo..

But I assume this is not easily possible.