Dear List,<br /><br />I&#39;m attempting to use the Filter::CopyValue within a multi element which itself is inside a repeatable block.  I&#39;m trying to copy the value from another field in the same multi (ie also same row).  However things aren&#39;t going to plan It doesn&#39;t seem to be working, possibly because the field name is not being updated with the nested name.<br /><br />Snippet from config:<br /><br />         - type: Repeatable<br />           name: staff_rep     <br />           increment_field_names: 1<br />           auto_id: %n    <br />           counter_name: staff_repnum     <br />           elements:<br />             - type: Multi<br />               name: staff<br />               elements:<br />                 - type: Text<br />                   name: name<br />                 - type: Text<br />                   name: prefname<br />                   filters:<br />                     - type: CopyValue<br />                       field: name<br />                       #also tried field: staff_rep.staff.name and field:staff.name<br /><br />Should the value of &#39;field&#39; in the filter be being updated? what would be the best way to, perhaps, write my own filter say that will use the modified names what methods can I use to access the current row and format to append the row count to? or perhaps there is a better way?<br /><br />Thanks in advance for any suggestions,<br /><br />Stephen