Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
cbaqir
Specialist II
Specialist II

Match and Max Date

I only want to show the row with the most recent start date per DEFECT_ID... in this case 5/3/17 with a total of 77 days.

7-19-2017 12-35-59 PM.jpg

I need to adjust this dimension to show only the MAX GPQ2_START_DATE when CUR_GOV_PROCESS_QUEUE,'Solution Design Group')>0:

=date(if(match(CUR_GOV_PROCESS_QUEUE,'Solution Design Group')>0,GPQ2_START_DATE,null()) , 'MM/DD/YYYY')

Can anyone help? TIA!

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

Try this?

= Aggr(IF(Rank(Date(if(match(CUR_GOV_PROCESS_QUEUE,'Solution Design Group')>0,GPQ2_START_DATE,null())), 0) = 1, GPQ2_START_DATE), DEFECT_ID, GPQ2_START_DATE)

Then Check Supress When Value is Null for that calculated dimension.

View solution in original post

5 Replies
vishsaggi
Champion III
Champion III

Is this sheet hidden again? 🙂

vishsaggi
Champion III
Champion III

Dont worry i got it. Will let you know.

cbaqir
Specialist II
Specialist II
Author

dang it!

vishsaggi
Champion III
Champion III

Try this?

= Aggr(IF(Rank(Date(if(match(CUR_GOV_PROCESS_QUEUE,'Solution Design Group')>0,GPQ2_START_DATE,null())), 0) = 1, GPQ2_START_DATE), DEFECT_ID, GPQ2_START_DATE)

Then Check Supress When Value is Null for that calculated dimension.

cbaqir
Specialist II
Specialist II
Author

Thanks again!