2

I found the blank rows, that is already great. Now I want to type "Not informed Value" to all blank values, but I don´t know how, Any hints.

Thanks in advance! I am having a great fun working with this distributed community! Joni

Ettore Rizza
  • 2,800
  • 2
  • 11
  • 23
Joni Hoppen
  • 658
  • 5
  • 23

1 Answers1

4

Use "facet by blank-> true" to isolate the blank cells, then click "transform" on the same column and type the text you want between quotes.

It's also possible to perform the operation with a GREL formula (using "transform"):

if(isBlank(value.trim()), "Not informed Value", value)

Finally, since Open Refine 2.7, you can apply this kind of formula to each columns at once. Just click on "All -> Transform" and use the formula above.

enter image description here

Ettore Rizza
  • 2,800
  • 2
  • 11
  • 23