I'm using below formula to return the details from leads to CSP Object using the URL link.
The formula works correctly for all fields and return values but no values on the addresses fields (Street / City / State / Postal Code / Country).
The Standard Address Field is used on Lead Object and the Custom Address Field is used on CSP object.
Is there something missing here related those addresses Compound fields?? or it doesn't work on formulas?
/lightning/o/CSP__c/new?recordTypeId=012P1000001TBHFIA4&defaultFieldValues=
CSP_Official_Website_URL__c={!Lead.Website},
CSP_Commercial_Name__c={!Lead.Company},
CSP_Lead__c={!Lead.Id},
CSP_Phone_Fax_No__c={!Lead.MobilePhone},
CSP_Address_Custom__c.Street={!Lead.Street},
CSP_Address_Custom__c.City={!Lead.City},
CSP_Address_Custom__c.State={!Lead.State},
CSP_Address_Custom__c.PostalCode={!Lead.PostalCode},
CSP_Address_Custom__c.Country={!Lead.Country}