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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
anthony_kinsell
Creator
Creator

Visual Cue settings - omit total

Is there a way to omit the total from the settings entered for visual clues on a graph?

I have a word screen shot of my graph to show what I mean.

1 Solution

Accepted Solutions
maxgro
MVP
MVP

instead of visual cues use text color and background color of the expression in expression tab

dimensionality for get normal or total rows

example, for background color of VacantDays (label)

=if(Dimensionality()>0,

  if(VacantDays>=10,Green(),

  if(VacantDays>-0.01,Yellow(),

  yellow()

  ))

  ,

  black()

)

View solution in original post

6 Replies
Greg_Williams
Former Employee
Former Employee

On Expressions tab > remove Total (lower right of window); otherwise - consider coloring fields using background color with a conditional coloring scheme.

anthony_kinsell
Creator
Creator
Author

Thanks Greg - I want the total to show - I just don't want the visual cue settings to apply to it so removing the total isn't an option.

IAMDV
Master II
Master II

Anthony - Use Expression > Background Colour instead of Visual Cues.

anthony_kinsell
Creator
Creator
Author

Not quite familiar with that Deepak - could you give an example of the definition you would use to say make the cell background green for values above 5?

IAMDV
Master II
Master II

I have made a video tutorial sometime back. Please see the below tutorial:

http://qlikshare.com/328/


Thanks,

DV

maxgro
MVP
MVP

instead of visual cues use text color and background color of the expression in expression tab

dimensionality for get normal or total rows

example, for background color of VacantDays (label)

=if(Dimensionality()>0,

  if(VacantDays>=10,Green(),

  if(VacantDays>-0.01,Yellow(),

  yellow()

  ))

  ,

  black()

)