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
NHKNHK 

Need Help on Reports

Hi All,

 

I need help on Reports. I have a custom object say "ObjectA" with Lookup to Account and Contact. Now i have to create a report with "ObjectA" where ObjectA.Account__c != ObjectA.Contact__r.Accountid.

 

Best Regards,

NHK

V AnandV Anand

Hi

You can create a formula filed like with type checkbox

IF(ObjectA.Account__c != ObjectA.Contact__r.Accountid,True,False) then use this fomula value in your report filter criteria like suppose your fomula field name is "check" then report filter is check==true.

I hope you will meet your requirment.

NHKNHK

 Vel123,

 

Thanks for your reply. I do not want to create any new field. i wanted to know if it is possible only with reports with out any modification.

 

Best Regards,

NHK