Template field variable - can I show a field for Amazon/ebay only?

Hi,

I am revamping my templates as I have too many to modify when I need little changes.  I want to have the buyer id on the invoice for ebay but not for amazon.  I currently have separate templates for each marketplace so it is easy to do but I want to use the same one for Ebay and Amazon.


In the edit label variable field I have [{ChannelBuyerName}] can I modify this to exclude any Amazon source?


Thanks

Hello,


Here's the printing condition you can use:


EVAL{BEGIN}IIF[[{Source}]<>"AMAZON","[{ChannelBuyerName}]",""]{END}


It reads as:

Evaluate -> IF SOURCE NOT EQUALS AMAZON > Return "Channel Buyer Name" > Else Return "Empty string"


Login to post a comment