On Sun, 5 Aug 2012, clarodina clarodina wrote:
Have a csv file having 25 columns d1 to d25
Trying to do a loop aginst the columns
scalar lo1=d1
You cannot assign a series (d1) as the content of a scalar variable
(lo1), that simply does not make sense. If you want to loop across
the series in your dataset, use a named list and a "foreach" loop.
Allin Cottrell