Hi,
I got a sample script from an older post but I cannot get it working.
I'm trying to remove duplicate values within records in a FC.

For example, in the first row above, I need to get rid of one "63350" and one "70169" keeping the ";" as delimiters.
<SPAN class="keyword token">import</SPAN> arcpy
InputFC <SPAN class="operator token">=</SPAN> r<SPAN class="string token">"H:\PROGRAMMES\10_OTHER_PROJECTS\24_ATTRIBUTION_CHECKS\From_RTJ.gdb\REFID_sample_1_1"</SPAN>
InputField <SPAN class="operator token">=</SPAN> <SPAN class="string token">"REF_ID"</SPAN>
cursor <SPAN class="operator token">=</SPAN> arcpy<SPAN class="punctuation token">.</SPAN>da<SPAN class="punctuation token">.</SPAN>UpdateCursor<SPAN class="punctuation token">(</SPAN>InputFC<SPAN class="punctuation token">,</SPAN> <SPAN class="punctuation token">[</SPAN><SPAN class="string token">"REF_ID"</SPAN><SPAN class="punctuation token">]</SPAN><SPAN class="punctuation token">)</SPAN>
<SPAN class="keyword token">for</SPAN> row <SPAN class="keyword token">in</SPAN> cursor<SPAN class="punctuation token">:</SPAN>
strList <SPAN class="operator token">=</SPAN> row<SPAN class="punctuation token">.</SPAN>Value<SPAN class="punctuation token">(</SPAN>InputField<SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">.</SPAN>split<SPAN class="punctuation token">(</SPAN><SPAN class="string token">"; "</SPAN><SPAN class="punctuation token">)</SPAN>
strSet <SPAN class="operator token">=</SPAN> set<SPAN class="punctuation token">(</SPAN>strList<SPAN class="punctuation token">)</SPAN>
str <SPAN class="operator token">=</SPAN> <SPAN class="string token">"; "</SPAN>
conStr <SPAN class="operator token">=</SPAN> str<SPAN class="punctuation token">.</SPAN>join<SPAN class="punctuation token">(</SPAN>strSet<SPAN class="punctuation token">)</SPAN>
row<SPAN class="punctuation token">.</SPAN>setValue<SPAN class="punctuation token">(</SPAN>InputField<SPAN class="punctuation token">,</SPAN> conStr<SPAN class="punctuation token">)</SPAN>
cur<SPAN class="punctuation token">.</SPAN>updateRow<SPAN class="punctuation token">(</SPAN>row<SPAN class="punctuation token">)</SPAN>
<SPAN class="keyword token">del</SPAN> row
<SPAN class="keyword token">del</SPAN> cursor<SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>I'm getting an error related to line 12: AttributeError: 'list' object has no attribute 'Value'
Any help would be greatly appreciated.
Thanks