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
Timmy AhluwaliaTimmy Ahluwalia 

Visual force page relation Field

My query:
 SELECT Fund__r.Related_Mandate__r.Name,Fund__r.Related_Mandate__r.French_Mandate_Name__c, SUM(Purchases__c) purchases, SUM(Redemptions__c) redemptions, 
                                       SUM(Switches_In__c) switchesIn, SUM(Switches_Out__c) switchesOut, SUM(Assets__c) assets 
                                       FROM Yearly_Metrics__c WHERE Rep_Code__c IN :repCodes AND Date__c=THIS_YEAR 
                                       GROUP BY Fund__r.Related_Mandate__r.Name,Fund__r.Related_Mandate__r.French_Mandate_Name__c ORDER BY SUM(Assets__c) DESC ]
Having trouble displaying the filed Fund__r.Related_Mandate__r.French_Mandate_Name__c on VF page
for  Fund__r.Related_Mandate__r.Name i used (!m.Name)
 
Raj VakatiRaj Vakati
Give me VF page markup

You many need to use like this

  {!m.Related_Mandate__r.Name}