Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
Is it possible to apply some text formatting like bold, italic or color code when concat is being used to build the string?
Thanks
Jean
No - there are no formatting within strings as such. Not with Concat() nor with other type of text manipulations.
We doesn't have sub-string concept with color in Qlikview. May be they will work for that. Try a luck using below?
If(SubStringCount(Concat(FieldName, '-'), 'YourString'), '<B> <I>')
If(SubStringCount(Concat(FieldName, '-'), 'YourString'), Green())
OR
If(SubField(Concat(FieldName, '-'), '-', 2), '<B>')