Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello community,
I am not formally trained in QlikView but find myself learning as I go.
I have an expression for s straight table that looks like this:
Count(Distinct Field1&Field2&Field3)
I would like something where I can do this:
Count(Distinct Field1&Field2&Field3) Where Field3 not null
I am looking to get a 0 when Field1 and Field2 still has a row in the table but Field 3 would be null in that row.
Currently Field3 is not included in the straight table as a dimension because that creates a separate row for each entry that is not null in Field3.
Values in all dimensions are strings
I hope this makes sense
Any help you could provide would be appreciated.
Michael
Thank you Sunny! That was exactly what I needed. Can you help me understand what is happening in that expression or point me where to look at what the syntax is doing.
@mscomens - All this is saying is that include only those rows from the data where there is some data available in Field3. {<Field = {"*"}>}. Added * before = to let selection in Field3 to filter the expression
@sunny_talwar - Thank you for the explanation!