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
Rodolfo CP RitoRodolfo CP Rito 

Activity Date / Reminder Date Order

Hi guys,

We have a visualforce page where 5 of our tasks are displayed.

Currently the Activity Date is not being correctly ordered as you can check in the following images:

User-added image

User-added image
Here you have the visualforce page code:
 
<apex:column value="{!task.ActivityDate}" headerValue="Activity Date"/>    
<apex:column value="{!task.ReminderDateTime}" headerValue="Reminder Date"/>
How can we order this according to the most recent day until the oldest one?

Thanks guys!


 
Nicole RebeloNicole Rebelo
Add  "ORDER BY ActivityDate DESC" to the task query in the controller.