Custom Labelling - displayname.replace

Hi

 

I don’t have issues changing one thing, such as:

 

{{displayName.replace(“AD Services Australasia”, “Eggs”)}}

 

How do I do more than one? this does not work

{{displayName.replace(“AD Services Australasia”, “Eggs”)}} {{displayName.replace(“Skype”, “Bacon”)}}

 

nor

 

{{displayName.replace(“AD Services Australasia”, “Eggs”) (“Skype”, “Bacon”)}}

 

 

etc

 

Thanks in advance

hi,

please try with

{{displayName.replace(“AD Services Australasia”, “Eggs”).replace(“Skype”,“Bacon”)}

… getting hungry now :wink:

2 Likes

Thank you :slight_smile: