Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
sban
Contributor III
Contributor III

Highlighting a few changed dimensions in Table Object for rows with same ID value

Hi Team,

I have a table object in Qlik Sense of the below format:

IDMonthCalculated Measure Column: if(aggr(count(....)), 'X','Y')Dimension4Dimension5
1NovYABCQWERTY
1DecYABC1QWERTY
2NovXry
3NovYabcabc2

 

I want to highlight ABC1 in some colour, because it is the dimension that has changed in Dec for the same ID. However I would prefer avoiding highlighting the Month. Similarly for other rows that have same ID in this table object.

Is there any way that this can be done through set expressions?

Thanks and Regards.

1 Solution

Accepted Solutions
OmarBenSalem

try to color it as follow : 

if(len(trim(aggr(Above(Dimension4),ID,Dimension4)))>0,'red')

result : 

Capture.PNG

View solution in original post

2 Replies
OmarBenSalem

try to color it as follow : 

if(len(trim(aggr(Above(Dimension4),ID,Dimension4)))>0,'red')

result : 

Capture.PNG

sban
Contributor III
Contributor III
Author

Thank you @OmarBenSalem ! This is working as expected.