Hello
I would like to suppress a dimension value if the value above is the same value. I want to do this in a straight table.
Thanks
Frank
Hello,
With Qlik Sense you might be able to do it by using set analysis.
You could try the below:
if(Peek(FieldName) = FieldName, 0, 1) as Display
Dimension: Display
Sum({<Display = {1}>} [Measure Field])
This should suppress repeating dimension values in your straight table, only displaying unique values. You can adjust the logic in the calculated field as needed based on your data and requirements.
Hello,
With Qlik Sense you might be able to do it by using set analysis.
You could try the below:
if(Peek(FieldName) = FieldName, 0, 1) as Display
Dimension: Display
Sum({<Display = {1}>} [Measure Field])
This should suppress repeating dimension values in your straight table, only displaying unique values. You can adjust the logic in the calculated field as needed based on your data and requirements.