it works when I remove all the numbers SN which contain strings (ex: N1234) from the second sheet (alldata)
for j=1:3708
for i=1:2360 %length(alldata)
if alldata{j,1}== alldata2{i,1}
alldata{j,2}=alldata2{i,2};
end
end
end
How I could use the code with cells which contain combination of text and number:
n12345, not available, NA, 111-134, 23(1234)
any suggestion.