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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Gowtham
Contributor III
Contributor III

Createing Calculated Dimension based on dimension values

Hi All,

I have one dimension called 'Type' and it has 'E3' and 'not E3' as values. I need to create a filter and it should be like 'E3', 'not E3' and 'All'. when I click 'All' in the filter it will give the data for both 'E3' and 'not E3'

How to create a calculated dimension with 'All' as a third value. Can anyone help me with this?

 

Thanks in Advance

1 Solution

Accepted Solutions
StarinieriG
Partner - Specialist
Partner - Specialist

Hi,

try to create a new table like this with Type as key

NoConcatenate
LOAD * Inline [
Dimension,Type
E3,E3
not E3,not E3
All,E3
All,not E3
];

View solution in original post

2 Replies
StarinieriG
Partner - Specialist
Partner - Specialist

Hi,

try to create a new table like this with Type as key

NoConcatenate
LOAD * Inline [
Dimension,Type
E3,E3
not E3,not E3
All,E3
All,not E3
];

Gowtham
Contributor III
Contributor III
Author

Thank you,

It's working as expected...