NPN Posted March 16, 2016 Share Posted March 16, 2016 I need to change only the '@' in a rule to a different font in an email address. The font used is DIN, which has a weird @, so the customer wants this exchanged with helvetica. The rule as it is now: lower =(Field("email").toLowerCase()) return lower I guess a .replace would work but I don't know the syntax for this case. Quote Link to comment Share on other sites More sharing options...
jwhittaker Posted March 16, 2016 Share Posted March 16, 2016 Try this return ReplaceSubstring(Field("Email"),'@', '<span font="Arial">@</span>'); Quote Link to comment Share on other sites More sharing options...
NPN Posted March 17, 2016 Author Share Posted March 17, 2016 That did indeed work, I changed the font to ='HelveticaNeueLT std Lt' and that also worked fine. Thanks! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.