Skip to content

Instantly share code, notes, and snippets.

@tsundara
Last active January 31, 2017 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsundara/70137710016c7dbc798325e463c5ca50 to your computer and use it in GitHub Desktop.
Save tsundara/70137710016c7dbc798325e463c5ca50 to your computer and use it in GitHub Desktop.
OpenRefine GREL common expressions
#Concatenate Cells
cells["col1"].value + " " + cells["col2"].value
cells["ORG_STREET"].value + " " + cells["ORG_CITY"].value + " " + cells["ORG_PROVINCE"].value + " " + cells["ORG_COUNTRY"].value + " " + cells["ORG_ZIP"].value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment