data{1,1} = {1,3,-9999};
data{1,2} = {2,3,4};
kk = 1;
for ii = 1:length(data)
if ~ismember(-9999,cell2mat(data{1,ii}))
dataR{1,kk} = data{1,ii};
kk = kk+1;
end
end

Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!