Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Line Break not effective on webpage in popups

Hi Gurus,

I have a chart. I have created a custom popup. Popup content has line breaks. Everything works fine when seen on Qlik desktop.

When I check thru webpage, I loose the line breaks. Attaching the screenshot for both.

Following is the expression

=concat('Assignment:' &assignment_name &' | '& 'Date:' & date(date_due,'YYYY-MM-DD') & ' | ' & 'Points:'& assignment_points&'/'&max_value  & chr(13) & 'Class Average : ' & round(aggr(avg({<time_in_book={'<>0'},assignment_points={'<>0'},user_id=,full_name = >}assignment_points),assignment_id)) & '/' & max_value& chr(13)) & chr(13)

Please help!

Thanks

DV


 

1 Solution

Accepted Solutions
manojkulkarni
Partner - Specialist II
Partner - Specialist II

use chr(10) instead chr(13)

View solution in original post

2 Replies
manojkulkarni
Partner - Specialist II
Partner - Specialist II

use chr(10) instead chr(13)

Not applicable
Author

Thanks. Worked!