Hello All! Im trying to auto create a amazon url. For example I want https://amazon.com/dp/[[AMAZON ASIN]]. This would look something like https://www.amazon.com/dp/B07FQ24C67.
However I can't seem to get it to concatenate.
the field Im trying to store the value to is "url" and the ASIN is store in "vendorPartNo"
I have tried the below with no luck .Can anyone get this to work somehow?
url = string\concatenate('https://www.amazon.com/dp/',vendorPartNo,');
url = string\concatenate('https://www.amazon.com/dp/',vendorPartNo,);
url = string\concatenate('https://www.amazon.com/dp/',vendorPartNo);
However I can't seem to get it to concatenate.
the field Im trying to store the value to is "url" and the ASIN is store in "vendorPartNo"
I have tried the below with no luck .Can anyone get this to work somehow?
url = string\concatenate('https://www.amazon.com/dp/',vendorPartNo,');
url = string\concatenate('https://www.amazon.com/dp/',vendorPartNo,);
url = string\concatenate('https://www.amazon.com/dp/',vendorPartNo);
Comment