Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

color expression

Hi,

color.PNGIn this,i dont want the color in the total tab.how can i remove it..if i give the condtion for color expression..total values are also changed..how can i do it..

1 Solution

Accepted Solutions
vinieme12
Champion III
Champion III

add the the first condition  to check for TOTAL Column

if(Columnno()=0 , black() , you next conditions in the Text Color Expression.....................)

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

6 Replies
Gysbert_Wassenaar

Use the SecondaryDimensionality() function to check if you're on the detail or the total level

If(SecondaryDimensionality()=0, ...color-expression... )


talk is cheap, supply exceeds demand
shaktisinghchau
Contributor III
Contributor III

Navigate to following window

Chart/Table Properties -> Expressions Tab - > Total column -> Expand it and click to Background Color

here you can write the expression based on cell value you can change background color of the cell like below

=If( Total >= 10000000, RGB(255,40,0),RGB(255,255,255))

BackColor.png

Anonymous
Not applicable
Author

thanks.bt i need to change only text color of the total not the background color

vinieme12
Champion III
Champion III

add the the first condition  to check for TOTAL Column

if(Columnno()=0 , black() , you next conditions in the Text Color Expression.....................)

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
Anonymous
Not applicable
Author

Thanks Vineeth

Its worked.thank u so much

vinieme12
Champion III
Champion III

Glad to hear that, please close this thread

Qlik Community Tip: Marking Replies as Correct or Helpful

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.