function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
learning_SFDClearning_SFDC 

Report help needed

Hi guys,

I have a object with records:
Name        form_no         createddate
test1         2222              23/03/2015
test1         2222              24/03/2015

test2         3333              23/03/2014
test2         3333              24/03/2014

test3          4444             22/03/2014

In my report i want to display latest created record  and should elminate the other records from report
like this:-
test1         2222              24/03/2015
test2         3333              24/03/2014
test3          4444             22/03/2014

Can please any one help me to achieve this with standard report

Thanks

            
Ravikant kediaRavikant kedia
Hi,
       You have to use filter criteria based on last created date , Salesforce provide filter criteria to do this task , So you have to set filter criteria to achive your task.   
https://success.salesforce.com/answers?id=90630000000gnBLAAY
http://help.salesforce.com/HTViewHelpDoc?id=custom_dates.htm&language=en_US
learning_SFDClearning_SFDC
Hi Ravi

Thanks for your reply.
if i put some filter it displays all record in that time range but what i need is to display one record  wich latest created from above records.