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
Alice Bergin VaughtAlice Bergin Vaught 

Billing Address Line 1 Field Names

How can I determine the API names for Account Billing Address Line 1, Account Billing Address Line 2, and Account Billing Address Line 3? I need them to populate and API but I can only find the field name for BillingStreet, which is a compostie field. 
KaranrajKaranraj
No you can't access the billing address Line1, Line2 and Line 3 seperately. Instead use carriage returns and merge the values eg: Concatenate(L1, CHAR(10), L2, CHAR(10), L3) This will merge all the Billing Address Line cells into one with carriage returns.