Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have 2 columns with either a True string or false string
I want the distinct count of number of values in a 3rd column such that these two columns are filtered to True
Following is not working
COUNT( {<[Col 1] = {'True'}, [Col 2] = {'True'}>} DISTINCT [Col 3])
Thank you for the help
Basically AND operation within this count is not working, it is taking it as OR i think
COUNT({<[COL 1]= {'True'}> * <[COL 2]= {'True'}>} DISTINCT [COL 3])
This is also not working 😞
* is for AND condition right?
In combining sets,
OR -> +
AND -> *
Post an example and the expected result.
@mahishah try below
COUNT(DISTINCT {<[Col 3] = p({<[Col 1] = {'True'}>}) * p({<[Col 2] = {'True'}>}) >} [Col 3])
Sure, please see below snapshot of what i want to do.
Please note there are more cols in the table than C, A and B due to which there could be multiple entries in the table like 2905 entry in column C does.
Making a custom measure in qlik sense just to elaborate.
This is also not working.
please see below snapshot of what i want to do.
Please note there are more cols in the table than C, A and B due to which there could be multiple entries in the table like 2905 entry in column C does.
Making a custom measure in qlik sense just to elaborate.
Got it!
Was an error in my table!
Thanks