Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
vireshkolagimat
Creator III
Creator III

conditional formatting

Hi Guys,

I have below sample data and i need to make certain rows bold based on the row dimension description.


Dimension
Sales1Sales2
laptop

2

7
Printer64
Desktop23
Total1014

If dimension is Printer, then i need that Printer row should be highlighted in bold. and also the total row should be in bold.

Kindly let me know if we can achieve this.

Regards,

Viresh

14 Replies
PrashantSangle

Hi,

try like

IF(Match(Dimension,'Printers','laptop'),'<b>')


Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Peter_Cammaert
Partner - Champion III
Partner - Champion III

Wow, just discovered Google Translate. Works pretty well

vireshkolagimat
Creator III
Creator III
Author

Thank you, it's working.

nilapril2010
Contributor III
Contributor III

hi,

you can try with this code -

IF(Dimension='Printers' Or Dimension='laptop','<b>')

Nilanjan

susovan
Partner - Specialist
Partner - Specialist

Hi Viresh,

You can also try this example,

if(GetSelectedCount(Dimension)>=1,'<b>')

Warm Regards,
Susovan