Skip to main content

Adding space between initials (created using Substitute & Regex Replace)

  • January 24, 2024
  • 1 reply
  • 0 views

Forum|alt.badge.img+4
  • New Participant
  • 2 replies

Hello,

I have 2 columns; 'First Name' & 'Middle Name'

I have a 3rd column with this formula which extracts the first letter of the above 2 columns.

SUBSTITUTE(REGEX_REPLACE(({First Name}&{Middle Name}), "[a-z]", ""), " ", "")
Example: Jon Reginald Mayo = JRM
However, I want to add a space in between each character, any ideas on how to do this?

1 reply

seferiannie
Forum|alt.badge.img+5
  • Participating Frequently
  • 12 replies
  • April 1, 2024
SUBSTITUTE(REGEX_REPLACE(({First Name}&{Middle Name}), "[a-z]", " "), " ", " ")

Reply