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
srikanth Gottimukkalasrikanth Gottimukkala 

date list

Can any won explain the code User-added imagefor displaying  list of flat monthly amount data in between one date to another date by clicking search button 
sandeep sankhlasandeep sankhla
Hi Srikanth,

You want query which will rerurn records based on start amd end date..you can simply have query like..

Select Id, date from objectName where startedate >= strEnteerdDate AND  startedate  <= strEnddate.....................