Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I'm using a KPI visualization in order to display a date. As there's not enough space, i would like to separate the all phrase in two by creating a new line.
Currently I'm using this expression:
=if(GetFieldSelections(AllocTransfInsDate)>0,
'from' & ' ' & $(vRange),
'Week' & ' ' & $(vCurrentInsDateWeek))
I've already tried something like
=if(GetFieldSelections(AllocTransfInsDate)>0,
'from' & chr(13) & $(vRange),
'Week' & ' ' & $(vCurrentInsDateWeek))
but it didn't worked... Does anyone have an idea to solve this issue?
Thank you!
Try to use a Text Box object. There you can handle line breaks, font size and color.
When applicable please mark the appropriate replies as CORRECT. This will help community members and Qlik Employees know which discussions have already been addressed and have a possible known solution. Please mark threads as HELPFUL if the provided solution is helpful to the problem, but does not necessarily solve the indicated problem. You can mark multiple threads as HELPFUL if you feel additional info is useful to others
How about Chr(10) instead of Chr(13)?
It also doesn't work ...
I guess, due to the responsive nature of the charts it wouldn't make sense to force a break. Maybe you should try use an extension to get what you want to.
Try to use a Text Box object. There you can handle line breaks, font size and color.
When applicable please mark the appropriate replies as CORRECT. This will help community members and Qlik Employees know which discussions have already been addressed and have a possible known solution. Please mark threads as HELPFUL if the provided solution is helpful to the problem, but does not necessarily solve the indicated problem. You can mark multiple threads as HELPFUL if you feel additional info is useful to others
Thank you Pablo
Your welcome !