Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Straight Table non selectable rows

Hello,

I have this straight table which has Territories as its dimension.

TerritoryVolume
A5
B10

Presently clicking on any of the rows of territory filters the entire report for that particular territory only.

Desired state:

Clicking on the entities of the territory has no effect.

Methods Tried:

Invisible text box on top of the table. Issues does not render well when viewed with IE plugin.

Any suggestions please

1 Solution

Accepted Solutions
Larry_Aaron
Employee
Employee

Syntax wise you need { } around the 'XYZ' and some other changes

num(sum({$<GeoID=,product={'XYZ'}>} distinct comparitive.volume),'#,##0')

View solution in original post

5 Replies
pover
Luminary Alumni
Luminary Alumni

In the volume expression, insert set analysis to ignore a selection to Territory,

sum({$<Territory=>}  Quantity)

Karl

Anonymous
Not applicable
Author

Check "read-only" in the chart properties, tab General

Not applicable
Author

There are 4 conditional Dimensions.

I only need to deactivate one of them.

So read only is not applicable here.

Original Expression:

num(sum(distinct(if(product='XYZ',( comparitive.volume)))),'#,##0')

Tried:

num(sum(distinct({$<GeoID=,product='XYZ'>} comparitive.volume)),'#,##0') (Does not work. Error in expression)

Suggestions???

Larry_Aaron
Employee
Employee

Syntax wise you need { } around the 'XYZ' and some other changes

num(sum({$<GeoID=,product={'XYZ'}>} distinct comparitive.volume),'#,##0')

Not applicable
Author

Thnx a lot guys for helping me out