Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
sangeetha_changu
Contributor
Contributor

highlight the entire row if there are duplicates in dimension

Approval No_9digit is extracted from Approval No. 

If the Approval No_9digit is same and repeating, need to highlight the entire row

Attached screenshot

 
4 Replies
AshutoshBhumkar
Partner - Specialist
Partner - Specialist

Hi,

You can try using If & Previous.

If(ApprovalNo_9digit = Previous(ApprovalNo_9digit), Yellow())

(Sort data on DepotDate)

 

Thanks,

Ashutosh

sangeetha_changu
Contributor
Contributor
Author

this didn't work

Frank_Hartmann
Master II
Master II

maybe this expression:

if(count( Total <[Approval No_9digit]> [Approval No_9digit]) > 1 , LightGreen())

or

Aggr(NODISTINCT If(count([Approval No_9digit]) > 1, LightGreen()), [Approval No_9digit])

sangeetha_changu
Contributor
Contributor
Author

this didnt help

kpi3_3.PNG