Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
sheetal1234
Contributor II
Contributor II

space between 2 words on title of chart in qliksense

hi, I want to give space between 2 words on title of chart. eg.



P&L                                                                                 Rs. Cr


how can i do this in qliksense???

1 Solution

Accepted Solutions
arvind_patil
Partner - Specialist III
Partner - Specialist III

Hi Sheetal,

May be like this:

='P&L '&'   '&'  Rs. Cr'


Thanks,

Arvind Patil

View solution in original post

9 Replies
arvind_patil
Partner - Specialist III
Partner - Specialist III

Hi Sheetal,

May be like this:

='P&L '&'   '&'  Rs. Cr'


Thanks,

Arvind Patil

sheetal1234
Contributor II
Contributor II
Author

Hi,

Thanks for prompt reply.

I tried your solution.

But it is not working..

brijesh_fofadiy
Contributor III
Contributor III

Hi sheetal1234


Use this in an expression:

='P&L' & Chr(160) & Chr(160) & Chr(160) & ' Rs. Cr'

Chr(160) = Space

Ralf_Heukäufer
Partner - Creator III
Partner - Creator III

Hi you can try it with different Characters like:

='P&L '& chr(9) &'  Rs. Cr'


My ASCII Table


Character 9 isthe Tabulator for example.


But I think that doesn't help the title ignores every space with a split white more than one.



simon_minifie
Partner - Creator III
Partner - Creator III

Hi Sheetal,

You can use chr(), although you've got to play around with it.

If you add multiple chr(32) it seems to ignore all but the first one, so you end up with one space.

Got around it by alternating between chr(32) and chr(160).

='Test'&chr(32)&chr(160)&chr(32)&chr(160)&'Test2'

Maybe someone else has a cleaner solution.

Thanks,

Simon

Anonymous
Not applicable

Hi,

Plz try this

'P&L' & repeat(chr(160),8) &'Rs. Cr'

Here  chr(160) indicate 'Space'.

And 8 indicates that how many time you want to repeat space.

Thanks,

Bazil

OmarBenSalem

You can close the thread; here's your answer !

sheetal1234
Contributor II
Contributor II
Author

Yes I got my answer.. Thank you so much for help.

sheetal1234
Contributor II
Contributor II
Author

Thanks..