Hello Peyman,
Retrieving only postalCode is not available at the connector level but you should be able to use Resident Load to work around this:
let vQwcConnectionName = 'lib://OutlookConnector';
Test01:
LOAD
displayName as Contacts_displayName,
businessAddress as Address
FROM [$(vQwcConnectionName)]
(URL IS <your webconnectors url, etc>, qvx);
ResTest:
Load *,
SubField(Address,',',1) as Street,
SubField(Address,',',2) as City,
SubField(Address,',',3) as State,
SubField(Address,',',4) as Country,
SubField(Address,',',5) as PostalCode
Resident Test01;
DROP Table Test01;
Note that this may require some manual standardization of your contacts, I had some other country codes that needed to be changed.
Does this help?
Best regards,
--Jay
To help users find verified answers, please don't forget to mark a correct resolution or answer to your problem or question as correct.