In theory accounts could have more then one row of "downloads" data, but we'd only be interested in the most recent number
As we'd like to feed this data back to our email marketing system, we need to relate this download number to each individual related to the account
I.e.
Account X has 100 downloads
Account X has 4 contacts
On each contact record, show '100 downloads' on the contact page.
We need to export the data, so showing through an embedded report wouldn't work for us
Anyone have any ideas?
3 respuestas
You probably can do this with
1. A roll up summary field (NumberOfDownloads__c) on account (Sum Downloads up to Account)
2. Formula field on Contact to pull through number of downloads ( Account.NumberOfDownloads__c )