Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
I'm trying to create a report so show "Select Excluded" ie Dark Grey in the filter with the tick next to the value as a result of using Select Possible/ Select Excluded
I've created this measure
Count({1<[Requirement Part Id]=E([Requirement Part Id]),[Requirement Work Order Base Id]>}Distinct[Requirement Work Order Base Id]) which shows the light grey values
But its the dark grey with the ticks (In Qlik terminology, "Select Excluded") that I'm after.
Any help would be greatly appreciated.
Thanks
Hi GavK,
Here is a refined approach to achieve the desired result:
Count({1<[Requirement Part Id]=E({1<[Requirement Part Id]=P([Requirement Part Id])>}), [Requirement Work Order Base Id]>} DISTINCT [Requirement Work Order Base Id])
E()
function to exclude selected values of [Requirement Part Id]
.P()
function to include only the possible values of [Requirement Part Id]
.Assume you have a dataset with [Requirement Part Id]
and [Requirement Work Order Base Id]
. This measure will count the distinct [Requirement Work Order Base Id]
where [Requirement Part Id]
is in the "Select Excluded" state (dark grey with ticks).
Add this measure to your Qlik Sense chart or table to display the count of [Requirement Work Order Base Id]
in the "Select Excluded" state. This should provide the desired result, showing the dark grey values with ticks.