Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
RobMazaheri
Contributor III
Contributor III

Conditional Formatting issue

RobMazaheri_0-1693905911585.png

 

using this formula  IF(COLUMN(8)-column(7)<0,RED(),Green())

what I need is when the column is 0 then make it white 

can anyone help with this please 

Labels (1)
1 Solution

Accepted Solutions
Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

Hi,

 

IF(COLUMN(8)-column(7)<0,RED(), If(COLUMN(8)-column(7)=0, White(),Green()))

Help users find answers! Don't forget to mark a solution that worked for you!

View solution in original post

2 Replies
Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

Hi,

 

IF(COLUMN(8)-column(7)<0,RED(), If(COLUMN(8)-column(7)=0, White(),Green()))

Help users find answers! Don't forget to mark a solution that worked for you!
RobMazaheri
Contributor III
Contributor III
Author

Amazing thank you