Does anyone know how to make the project address change on a project quote when the main address in the system is changed by overriding it on the quote? My current expression in Report Designer looks like this”
=IIf(fCRShippingAddress.AddressLine1]<> null, ,CRShippingAddress.AddressLine1] + '{br}', '')
+IIf(fCRShippingAddress.AddressLine2]<>null,lCRShippingAddress.AddressLine2] + '{br}','')
+IIf(fCRShippingAddress.AddressLine3]<> null,lCRShippingAddress.AddressLine3] + '{br}','')
+IIf(fCRShippingAddress.City]<>null, ,CRShippingAddress.City],'')
+IIf(fCRShippingAddress.City]<>null And dCRShippingAddress.State]<>null, ', ', '')
+IIf(fCRShippingAddress.State]<>null,lCRShippingAddress.State],'')
+IIf(fCRShippingAddress.PostalCode]<>null And dCRShippingAddress.State]<>null, ', ', ' ')
+IIf(fCRShippingAddress.PostalCode]<>null,lCRShippingAddress.PostalCode]+ '{br}','')
When we override that address in the project quote, it does not change it on the printed quote.
Any thoughts?
The printed quote still goes back to the original address linked to the customer in the system.