Home > database >  Google sheet: Replace (_) with (Empty space) in the selected cells
Google sheet: Replace (_) with (Empty space) in the selected cells

Time:11-08

enter image description here

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,"_"," "))
  • Related