imagine you have 4 columns c1-c4 for which you want test data with value in this list
c1 zxcv, f567, h789, n098
c2 12.34, 1234, 987, 1000000
c3 "Leena sasuser", "Peter C", "another"
c4 wq, er, ty
This is syntax that uses these [pre]data test_data1 ;
do c1= 'zxcv', 'f567', 'h789', 'n098' ;
do c2= 12.34, 1234, 987, 1000000 ;
do c3= "Leena sasuser", "Peter C", "another" ;
do c4= "wq", "er", "ty";
output ;
end ; end ; end ; end ;
run ; [/pre]It generates 4x4x4x3 rows of test data, every combination of those values.
Is that the model solution you want?
PeterC