I have a table with 3 records
ID Date
1 10/8/2008
2 10/9/2009
3 10/9/2009
I need to generate a formula to count the number of records for the Max Date so my result should be '2' records for the date '10/9/2009'
Here is the formula I am using and it is not working. It is counting all 3:
If {DailyWork.Date}=Maximum(DailyWork.Date}) Then
Count({DailyWork.ID})
ID Date
1 10/8/2008
2 10/9/2009
3 10/9/2009
I need to generate a formula to count the number of records for the Max Date so my result should be '2' records for the date '10/9/2009'
Here is the formula I am using and it is not working. It is counting all 3:
If {DailyWork.Date}=Maximum(DailyWork.Date}) Then
Count({DailyWork.ID})