Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Maciej29
Contributor III
Contributor III

Colors in formula

How to combine below formula with custom colors for each status ? I need it for bars in bar chart. Any thoughts ? Thanks in advance.

 

yellow - STARTED

brown - PENDING

red - ON HOLD

blue - IN PROGRESS

purple- IN REVIEW

green- PROCESSED

 

=If(Match([STATUS],'STARTED','PENDING','IN REVIEW','ON HOLD','IN PROGRESS','PROCESSED'),[STATUS])

1 Solution

Accepted Solutions
NitinK7
Specialist
Specialist

first create a master dimension for status and field box below exp

=pick(match(Status,'STARTED','PENDING','IN REVIEW','ON HOLD','IN PROGRESS','PROCESSED'),
'STARTED','PENDING','IN REVIEW','ON HOLD','IN PROGRESS','PROCESSED')

and hit create button.

NitinK7_0-1625151129338.png

after click this master dimension and edit this

NitinK7_1-1625151233133.png

then click value color tab

NitinK7_2-1625151267370.png

then set your colors based on status values

NitinK7_3-1625151303904.png

and use this master dimension in your chart and color section set color by dimension

NitinK7_4-1625151404341.png

 

 

View solution in original post

1 Reply
NitinK7
Specialist
Specialist

first create a master dimension for status and field box below exp

=pick(match(Status,'STARTED','PENDING','IN REVIEW','ON HOLD','IN PROGRESS','PROCESSED'),
'STARTED','PENDING','IN REVIEW','ON HOLD','IN PROGRESS','PROCESSED')

and hit create button.

NitinK7_0-1625151129338.png

after click this master dimension and edit this

NitinK7_1-1625151233133.png

then click value color tab

NitinK7_2-1625151267370.png

then set your colors based on status values

NitinK7_3-1625151303904.png

and use this master dimension in your chart and color section set color by dimension

NitinK7_4-1625151404341.png