Hello,
could you please help me with creating the replace function with more than one condition? I need something like this:
REPLACE([adwordsadgroupname], "®", "®") or REPLACE([adwordsadgroupname], "ÂY", "ä")
Reagrds,
Tomasz
This formula should work (although I haven't tested it):
REPLACE(REPLACE([adwordsadgroupname], "®", "®"), "ÂY", "ä")