Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I want to show spaces before my second and third values in my dimension.
So I gave my expression as
=if(match(%ESFilters2,'Initial Issuances [#]'),' Initial Issuances [#]',
if(match(%ESFilters2,'Repeat Issuances [#]'),' Repeat Issuances [#]',%ESFilters2))
It works fine on my desktop but doesn't work on webview. Can anyone provide me any suggestions on this.
Attached is a screenshot.
Regards,
Aditya
Hi,
I think it is working in webview.
May be try like..
=if(match(%ESFilters2,'Initial Issuances [#]'),Repeat(chr(160),5)&'Initial Issuances [#]',
if(match(%ESFilters2,'Repeat Issuances [#]'),Repeat(chr(160),5)&'Repeat Issuances [#]',%ESFilters2))
Web probably will trim all spaces.
Try to add ASCI character
Chr(32)
=if(match(%ESFilters2,'Initial Issuances [#]'),Chr(32)&' Initial Issuances [#]'........
Feeling Qlikngry?
Hi Robert,
Chr(32) also didn't work on web view and I also tried chr(9) as well, that too didn't work.
HI,
I think it will remove the blank spaces in web view, instead you can try by using .... (Pull stops).
Regards,
jagan.
May be its not working on the web view mode. Did you try on access point ?
No, But I'll try that first thing in the morning.
Hi,
I think it is working in webview.
May be try like..
=if(match(%ESFilters2,'Initial Issuances [#]'),Repeat(chr(160),5)&'Initial Issuances [#]',
if(match(%ESFilters2,'Repeat Issuances [#]'),Repeat(chr(160),5)&'Repeat Issuances [#]',%ESFilters2))
Hi Settu. It worked, Thanks..