diff --git a/plugins/destinations/node.inc b/plugins/destinations/node.inc
index e6f15ea..50c2d55 100644
--- a/plugins/destinations/node.inc
+++ b/plugins/destinations/node.inc
@@ -206,6 +206,41 @@ class MigrateDestinationNode extends MigrateDestinationEntity {
         if (property_exists($node, $field) && $node->$field === NULL) {
           // Ignore this field
         }
+        elseif (isset($migration->multiValueFields)
+          && is_array($migration->multiValueFields) && in_array($field, $migration->multiValueFields)) {
+          // Hey it looks like we want to append to this field.
+          if (is_array($value)) {
+            // Then we could be dealing with a file or image field or a body field or some other translated field.
+            $thisField = $node->$field;
+            $langValues = array();
+
+            // maintain existing values in multi-value fields
+            // otherwise $node->field is ready to go as is
+            if(!empty($value)) {
+              // We can import this, got to do it on a per language basis
+              foreach ($value AS $lang => $lang_value) {
+                if (isset($thisField[$lang])) {
+                  $new_value = $thisField[$lang];
+                }
+                else {
+                  $new_value = array();
+                }
+                $langValues[$lang] = array_merge($lang_value, $new_value);
+              }
+              $node->$field = $langValues;
+            }
+          }
+          else if (!is_int($value) && is_string($value)) {
+            //We have a string.
+            //I don't like this implementation fully yet. Needs considerations for separators and prepend/append
+            $node->$field = $value . $node->$field;
+          }
+          else {
+            // We have a int, or bool
+            // Not much we can do here, maybe use separator for this
+            // Will probably need some kind of message output here
+          }
+        }
         elseif (!isset($node->$field)) {
           $node->$field = $old_node->$field;
         }
