Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
jerryr125
Creator III
Creator III

GetCurrentSelections() Formatting

Hi - 

With the GetCurrentSelections() formula is it possible to do the following :

1. Make the Field names BOLD and the values not bold - or a different color ?

2. Between each select combination of a fields and values - add a ";" ?

 

Example:

Year: 2020; Month: Feb, Mar; Product: Ice Cream Bars

 

Thanks so much - Jerry

1 Solution

Accepted Solutions
Almen
Creator II
Creator II

It is not possible.

 

As an Alternative you could try (no text formatting though): 

 

'Year: '&GetFieldSelections(Year)&'; '&'Month: '&GetFieldSelections(Month)&'; '&'Product: '&GetFieldSelections(Product)

 

View solution in original post

2 Replies
Almen
Creator II
Creator II

It is not possible.

 

As an Alternative you could try (no text formatting though): 

 

'Year: '&GetFieldSelections(Year)&'; '&'Month: '&GetFieldSelections(Month)&'; '&'Product: '&GetFieldSelections(Product)

 

Or
MVP
MVP

In order to figure out which fields to use, you could try the approach detailed here:

https://community.qlik.com/t5/QlikView-App-Dev/Is-there-an-easy-way-to-get-the-names-of-fields-with-...

Note that if you place your expression, in sections, into a text objects, you can use the text object's formatting capabilities to set bold / colors / etc. However, the expression itself can't control text formatting.