Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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
Luminary Alumni
Luminary Alumni

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
Luminary Alumni
Luminary Alumni

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()

)