I need to replace the (_) in the first range (Red rectangle) into a SPACE in the second range (Green rectangle). How can i do that ? thanks in advance ❤️
CodePudding user response:
try like this:
=INDEX(SUBSTITUTE(A1:A10; "_"; " "))
CodePudding user response:
This would also works:
=ArrayFormula(REGEXREPLACE(A1:A,"_"," "))