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
Rachel Linder 8Rachel Linder 8 

how can i copy the address of an account onto a contRact record

We would like to copy the account billing address to a contract (not contact) record upon saving the contract record. We have a lookup relationship to the account (standard field within the comtract record). Can this be done via a formula field?
Narender Singh(Nads)Narender Singh(Nads)
Hi Rachel,
Yes, this can be done using a formula field.

Use this formula:(Return Type text)

Account.BillingStreet + BR() + 
Account.BillingCity + ", "+ 
Account.BillingState +" " + 
Account.BillingPostalCode + BR() + 
Account.BillingCountry

Let me know if it helps.
Thanks!
Sintu RanaSintu Rana
Correct Answer.. @Nads