Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is there a way to to Hide / Filter a specific Value in the straight table dimension.
Ex:
Country
USA
UK
France
Canada
Japan
and I want to filter the Value say (Japan) from the straight table.
Best -
SA
Hello,
A crude method I can think of:
Add a calculated dimension
=if(not match(Country,'Japan'),Country)
Suppress Null values in dimensions
Cheers!
Try this for your dimension.
if(Country<>Japan,Country)
Hi,
Instead of going for Calculated Dimension since Calculated Dimension leads to performance issues, you can do the same in Expression like this
=Sum({<Country-={'Japan'}>} MeasureName)
Hope this helps you.
Regards,
Jagan.
hi
you can use calculated dimention :if(country<>'japan',country).
Hi Jagan -
I am trying the exact Expression, It works for "=",, But doesn't work for "<>".
Any Idea for NOT EQUAL Sign in to define Here.
Example :
=Sum({$<Country = {'Japan','France'}>}Revenue) ----- Works
=Sum({$<Country <> {'Japan','France'}>}Revenue) -------- Doesn't Work
=Sum({$<Country -= {'Japan','France'}>}Revenue) -------- Doesn't Work
=Sum({$<Country != {'Japan','France'}>}Revenue) -------- Doesn't Work
Is there a specific Syntax for NOT EQUAL in QV Set Analysis
Thanks -
This Works!
=IF(Country<>'Japan',Country) and I have suppressed the Null Values.
Thanks -
This Works,
The Code Below:
=If(NOT MATCH(Country,'Japan','France'),Country)
=If(NOT MATCH(Country,'Japan','France'),Country) ---- This Works
Hi Syed,
This would definitely work, Qlikview shows as error (underlined red color) but it works. Please check.
=Sum({<Country -= {'Japan','France'}>}Revenue)
Regards,
Jagan.