I have the following comma-delimited CSV file in Google refine:
How do I fill down the values from column1 using Jython or GREL to become:
I have tried:
if value is None:
return row["record"]["cells"]["column1"]["value"][0]
else:
return value
Any suggestions? thank you
The tricky part of your example is the record id 1 as you have two different values in column1 within the same record.
So to complete this you have to
ID
andcolumn1
field (see tutorial)row.record.cells["Column1"].value[0]
to fill down (see tutorial)I've successfully done it in 6 steps here is the JSON code to apply to your project: