I made this soultion and it seems to be working fine to adjust the date that you want with the criteria that the next month number is 11, and current is 1.
% Fix month import issue
for i = 1:length(iedata.Date)
if month(iedata.Date(i)) == 1 && month(iedata.Date(i+1)) == 11
iedata.Date(i) = iedata.Date(i) + calmonths(9);
end
end
clear i